diff --git a/src/AppBundle/Controller/CreateFolderController.php b/src/AppBundle/Controller/CreateFolderController.php
index 55802652..bb70f9ef 100644
--- a/src/AppBundle/Controller/CreateFolderController.php
+++ b/src/AppBundle/Controller/CreateFolderController.php
@@ -68,6 +68,103 @@ public function CreateFolderAction($dir_name, Request $request)
}
+ /**
+ * about
+ * @Route("/createOrganism", name="createOrganism")
+ * @Route("/admin/createOrganism", name="admin_createOrganism")
+ * @Method({"GET", "POST"})
+ */
+ public function CreateOrganismAction(Request $request)
+ {
+
+
+ $organism_name=$request->query->get('organism_name');
+ $organism_taxid=$request->query->get('tax_id');
+ $organism_description=$request->query->get('organism_description');
+ $organism_scientificName=$request->query->get('scientific_name');
+ $organism_class=$request->query->get('organism_class');
+
+
+ $organism_data=array(
+ 'organism_name'=>$organism_name,
+ 'organism_taxid'=>$organism_taxid,
+ 'organism_description'=>$organism_description,
+ 'organism_scientificName'=>$organism_scientificName,
+ 'organism_class'=>$organism_class,
+ );
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ // $interactor_id_string = join(',', $interactor_array);
+ // $interactor_id_string = "'" . str_replace(",", "','", $interactor_id_string) . "'";
+
+ $query='select * from organism where common_name="'.$organism_name.'"';
+
+ $result = $connection->query($query);
+ // mysqli_close($connection);
+ // $organism_arrays = array();
+ if($result){
+ $count =0;
+ while($row = $result->fetch_assoc()) {
+ $count++;
+ }
+ if ($count>0){
+ $this->addFlash(
+ 'success',
+ 'Organism already present with the name: ' .$organism_name
+ );
+ $url_new= $this->generateUrl('data_manager');
+ $response = new RedirectResponse($url_new);
+ return $response;
+ }
+ }
+
+ $query='insert into organism (common_name,description,scientific_name,class,taxid_id) VALUES ("';
+ $query=$query.$organism_name.'","'.$organism_description.'","'.$organism_scientificName.'","'.$organism_class.'","'.$organism_taxid.'")';
+
+ $result = $connection->query($query);
+ mysqli_close($connection);
+
+ // $organism_array = array();
+ // foreach ($organism_arrays as $organism) {
+
+ // $id = $organism['id'];
+ // $common_name = $organism['common_name'];
+ // $name=$id.". "."$common_name";
+ // $organism_array[] = $name;
+ // }
+ // var_dump($organism_data);
+ // die;
+ // if(!empty($fname)){
+ // // dump($fname);die;
+
+ // $root=$this->getParameter('kernel.root_dir');
+ // $path=$root.$sp_char."..".$sp_char."web".$sp_char."uploads".$sp_char.$fname;
+ // $filesystem = new Filesystem();
+ // $filesystem->mkdir($path, 0777);
+ // // $filesystem->remove($path);
+ // $path=null;
+
+ // $url_new= $this->generateUrl('file_manager', ['upload_directory' => $fname]);
+ // $response = new RedirectResponse($url_new);
+ // return $response;
+ // }
+ // die;
+
+
+ $this->addFlash(
+ 'success',
+ 'Organism '.$organism_name. ' created successfully! '
+ );
+
+
+ $url_new= $this->generateUrl('data_manager');
+ $response = new RedirectResponse($url_new);
+ return $response;
+
+ }
+
/**
* about
diff --git a/src/AppBundle/Controller/DataController.php b/src/AppBundle/Controller/DataController.php
index 75671c76..97474185 100644
--- a/src/AppBundle/Controller/DataController.php
+++ b/src/AppBundle/Controller/DataController.php
@@ -17,6 +17,7 @@
use AppBundle\Entity\Support_Information;
use AppBundle\Entity\Interaction_Support_Information;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
+use Symfony\Component\Form\Extension\Core\Type\TextType;
use AppBundle\Form\Data_FileType;
use AppBundle\Form\DataType;
use Symfony\Component\Form\Extension\Core\Type\FileType;
@@ -214,7 +215,15 @@ public function dataAction(Request $request)
// self::handleData3($dform,$request);
// }
+ $organismForm = self::getOrganismForm2();
+ $organismForm->handleRequest($request);
+ // self::OrganismFormHandler($organismForm);
+
$protein_form= self::getProteinForm();
+
+ // $organism_form= self::getOrganismForm();
+ // $organism_form->handleRequest($request);
+ // self::OrganismFormHandler($organism_form);
$fform = self::getFForm();
$fform->handleRequest($request);
@@ -285,12 +294,70 @@ public function dataAction(Request $request)
'url' => $url,
// 'dform'=> $dform->createView(),
'fform'=> $fform->createView(),
+ 'organism_form'=> $organismForm->createView(),
'protein_form'=> $protein_form->createView()
-
));
}
+ public function OrganismFormHandler($organism_form){
+ if ($organism_form->isSubmitted()){
+ $organism_name = $organism_form->get('Name')->getData();
+ $organism_taxid = $organism_form->get('Taxonomy')->getData();
+ $organism_scientific_name = $organism_form->get('Scientific_Name')->getData();
+ $organism_description = $organism_form->get('Description')->getData();
+ $organism_class = $organism_form->get('Class')->getData();
+ // var_dump($organism_name);die;
+
+ // $functions = $this->get('app.functions');
+ // $connection = $functions->mysql_connect();
+
+ // $query = "select * from organism where name = ";
+ // $query = $query . "'" . $organism_name . "'";
+ // var_dump($query);
+ // $result = $connection->query($query);
+ // if ($result) {
+ // $this->addFlash(
+ // 'notice',
+ // 'Organism already exists!'
+ // );
+ // // while ($row = $result->fetch_assoc()) {
+ // // $interaction_array[] = $row['id'];
+ // // }
+ // }
+ // mysqli_close($connection);
+
+ // $em = $this->getDoctrine()->getManager();
+
+ // $query = 'select * from organism where name = ';
+ // $query = $query . "'" . $organism_name . "'";
+ // var_dump($query);die;
+
+ // $results = $query->getResult();
+
+ // if ($results) {
+ // $this->addFlash(
+ // 'notice',
+ // 'Organism already exists!'
+ // );
+ // // while ($row = $result->fetch_assoc()) {
+ // // $interaction_array[] = $row['id'];
+ // // }
+ // }
+
+ // $organism = new Organism();
+ // $organism->setOrganismName($organism_name);
+ // $em = $this->getDoctrine()->getManager();
+ // $em->persist($organism);
+ // $em->flush();
+
+ // $this->addFlash(
+ // 'notice',
+ // 'Your changes were saved!'
+ // );
+ }
+ }
+
public function FFormHandler($fform)
{
if ($fform->isSubmitted())
@@ -299,6 +366,8 @@ public function FFormHandler($fform)
// $this->get('session')->save();
// self::handleData3($dform,$request);
$file_to_insert = $fform->get('files_to_insert')->getData();
+ $organism = $fform->get('organism_select')->getData();
+ // var_dump($organism);die;
$temp_arr=explode("::", $file_to_insert);
$file=$temp_arr[1];
$folder=$temp_arr[0];
@@ -314,6 +383,58 @@ public function FFormHandler($fform)
}
+
+ public function getOrganismForm2()
+ {
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ // $interactor_id_string = join(',', $interactor_array);
+ // $interactor_id_string = "'" . str_replace(",", "','", $interactor_id_string) . "'";
+
+ $query = "SELECT id, common_name FROM organism;";
+
+ $result = $connection->query($query);
+ mysqli_close($connection);
+ $organism_arrays = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $organism_arrays[] = $row;
+ }
+ }
+
+ $organism_array = array();
+ foreach ($organism_arrays as $organism) {
+
+ $id = $organism['id'];
+ $common_name = $organism['common_name'];
+ $name=$id.". "."$common_name";
+ $organism_array[] = $name;
+ }
+
+ // if($interaction_array){
+ // return $interaction_array;
+ // }else{
+ // return false;
+ // }
+ // $encoded = json_encode($organism_array, JSON_UNESCAPED_UNICODE);
+ // var_dump($encoded);die;
+
+ // dump($files_array);die;
+
+
+ $defaultData = array('message' => 'Type your message here');
+ $organismForm = $this->createFormBuilder($defaultData)
+ ->add('organism_select', ChoiceType::class, array(
+ 'choices' => $organism_array
+ ))->getForm();
+
+ return $organismForm;
+ }
+
+
public function deleteFormHandler($delete_form)
{
@@ -1946,6 +2067,30 @@ public function getDeleteForm()
public function getFForm()
{
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT id, common_name FROM organism;";
+
+ $result = $connection->query($query);
+ mysqli_close($connection);
+ $organism_arrays = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $organism_arrays[] = $row;
+ }
+ }
+
+ $organism_array = array();
+ foreach ($organism_arrays as $organism) {
+
+ $id = $organism['id'];
+ $common_name = $organism['common_name'];
+ $name=$id.". "."$common_name";
+ $organism_array[] = $name;
+ }
+
$files_array = array();
$ps=$this->getParameter('system_path_seperator');
@@ -1979,7 +2124,9 @@ public function getFForm()
$defaultData = array('message' => 'Type your message here');
$fform = $this->createFormBuilder($defaultData)
->add('files_to_insert', ChoiceType::class, array(
- 'choices' => $files_array
+ 'choices' => $files_array, 'label' => 'Select Data file'))
+ ->add('organism_select', ChoiceType::class, array(
+ 'choices' => $organism_array,'label' => 'Select Organism to insert data'
))->getForm();
return $fform;
@@ -3341,6 +3488,58 @@ public function getProteinForm()
}
+ public function getOrganismForm()
+ {
+ // $protein_array=array();
+
+ // $em = $this->getDoctrine()->getManager();
+ // $em->getConnection()->getConfiguration()->setSQLLogger(null);
+ // $query = $em->createQuery(
+ // "SELECT i.gene_name
+ // FROM AppBundle:Protein i"
+ // // WHERE i.id = :id"
+ // );
+ // $query->setMaxResults( 1000 );
+ // // $query->setParameter('id', $interaction_id);
+ // $interaction_array = $query->getResult();
+
+ // foreach($interaction_array as $protein){
+ // $protein_array[]=$protein['gene_name'];
+ // }
+ // // $List = implode(';', $protein_array);
+ // // return $List;
+
+ $defaultData = array('message_XX' => 'Type your message here_XX');
+ $organism_form = $this->createFormBuilder($defaultData)
+ ->add('Name', TextType::class, array(
+ 'label' => 'Name',
+ ))
+ ->add('Taxonomy', TextType::class, array(
+ 'label' => 'Taxonomy ID (optional)',
+ 'required' => false,
+ ))
+ ->add('Class', TextType::class, array(
+ 'label' => 'Class (optional)',
+ 'required' => false,
+ ))
+ ->add('Scientific_Name', TextType::class, array(
+ 'label' => 'Scientific Name (optional)',
+ 'required' => false,
+ ))
+ ->add('Description', TextType::class, array(
+ 'label' => 'Description (optional)',
+ 'required' => false,
+ ))
+ ->add('save', SubmitType::class, ['label' => 'Create Organism',
+ // 'options' => ['class' => 'btn btn-success'],
+ ])
+ // ->add('save', SubmitType::class, ['label' => 'Create Task'])
+ ->getForm();
+
+ return $organism_form;
+
+ }
+
/*
diff --git a/src/AppBundle/Controller/HController.php b/src/AppBundle/Controller/HController.php
new file mode 100644
index 00000000..8b36af2e
--- /dev/null
+++ b/src/AppBundle/Controller/HController.php
@@ -0,0 +1,1467 @@
+get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT * FROM `interaction` WHERE `removed` = 0";
+ $result = $connection->query($query);
+ $count = 0;
+ while($row = $result->fetch_assoc()) {
+ $score = $row['score'];
+ $interactor_A_index = $row['interactor_A'];
+ $interactor_B_index = $row['interactor_B'];
+
+ $interactor_A = $this->getDoctrine()
+ ->getRepository(Protein::class)
+ ->find($interactor_A_index);
+
+ $interactor_B = $this->getDoctrine()
+ ->getRepository(Protein::class)
+ ->find($interactor_B_index);
+
+
+ $uniprot_A = $interactor_A->getUniprotId();
+ $ensembl_A = $interactor_A->getEnsemblId();
+ $entrez_A = $interactor_A->getEntrezId();
+ $gene_name_A = $interactor_A->getGeneName();
+
+ $uniprot_B = $interactor_B->getUniprotId();
+ $ensembl_B = $interactor_B->getEnsemblId();
+ $entrez_B = $interactor_B->getEntrezId();
+ $gene_name_B = $interactor_B->getGeneName();
+
+ $dataFile = $dataFile . $gene_name_A . "," . $gene_name_B . "," . $ensembl_A . "," . $ensembl_B . "," . $uniprot_A . "," . $uniprot_B . "," . $entrez_A . "," . $entrez_B . "," . $score . "\r\n";
+ }
+
+
+
+ }
+
+
+ public function postHAction(Request $request)
+ {
+
+ $h = fopen('/home/mmee/Desktop/file.txt', 'w');
+ fwrite($h, $dataFile);
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $h1 = fopen('/home/mmee/Desktop/test_1.sql', 'w');
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+
+ $handle = fopen('/home/mmee/Desktop/yeast_interactome.tsv', 'r');
+ $file_row = 0;
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $file_row++;
+ if($file_row > 1){
+ try{
+ list ($ensembl_id_A, $ensembl_id_B) = $file_data;
+ $interactor_A = self::getProteinFromEnsemblID($ensembl_id_A);
+ $interactor_B = self::getProteinFromEnsemblID($ensembl_id_B);
+
+ if($interactor_A && $interactor_B){
+
+ $id_A = $interactor_A->getId();
+ $id_B = $interactor_B->getId();
+
+ $query = "INSERT INTO `interaction`(`id`, `removed`, `interactor_A`, `interactor_B`) VALUES ('',0,$id_A,$id_B)";
+ $result = $connection->query($query);
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $h1 = fopen('/home/mmee/Desktop/test_1.sql', 'w');
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+
+ $handle = fopen('/home/mmee/Desktop/yeast_genes.tsv', 'r');
+ $file_row = 0;
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $file_row++;
+ if($file_row > 1){
+ try{
+ list ($ensembl_id, $uniprot, $entrez) = $file_data;
+
+
+ $query = "INSERT INTO `protein`(`id`, `uniprot_id`, `ensembl_id`, `entrez_id`) VALUES ('', '$uniprot', '$ensembl_id', '$entrez');";
+
+
+ fwrite($h1, $query . "\n");
+
+ $query = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('', '$uniprot', 'uniprotkb');";
+
+ fwrite($h2, $query . "\n");
+ $query = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('', '$ensembl_id', 'ensembl');";
+
+ fwrite($h2, $query . "\n");
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query2 = "SELECT * FROM `protein`";
+ $result2 = $connection->query($query2);
+ $count = 0;
+ //$handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while($row = $result2->fetch_assoc()) {
+ $count++;
+
+ $protein_id = $row['id'];
+ $ensembl_id = $row['ensembl_id'];
+ $uniprot_id = $row['uniprot_id'];
+ $gene_name = $row['gene_name'];
+
+ $query = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('', '$gene_name', 'gene_name');";
+ $connection->query($query);
+
+ if($ensembl_id != null && $ensembl_id != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$ensembl_id'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ if($uniprot_id != null && $uniprot_id != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$uniprot_id'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ if($gene_name != null && $gene_name != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$gene_name'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ }
+ }
+
+
+ public function preHAction(Request $request)
+ {
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT * FROM `annotation` WHERE `annotation_type` = 5 ";
+ $result = $connection->query($query);
+ $count = 0;
+ while($row = $result->fetch_assoc()) {
+ $annotation_id = $row['id'];
+ $interaction_id = $row['identifier'];
+ $count++;
+ if($count == 1){
+ fwrite($h2, "INSERT INTO `annotation_interaction` (`interaction_id`, `annotation_id`) VALUES" . "\n");
+ fwrite($h2, "('$interaction_id','$annotation_id')," . "\n");
+ }elseif($count < 300){
+ fwrite($h2, "('$interaction_id','$annotation_id')," . "\n");
+ }elseif($count == 300){
+ fwrite($h2, "('$interaction_id','$annotation_id');" . "\n");
+ $count = 0;
+ }
+ }
+
+
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT `ensembl_id` FROM `protein` WHERE 1";
+ $result = $connection->query($query);
+ $ensembl_id_array = array();
+ while($row = $result->fetch_assoc()) {
+ $ensembl_id_array[] = $row['ensembl_id'];
+ }
+
+ $query = "SELECT * FROM `annotation` WHERE `annotation_type` = '1'";
+ $result = $connection->query($query);
+ $count = 0;
+ while($row = $result->fetch_assoc()) {
+ $annotation_id = $row['id'];
+ $ensembl_id = $row['identifier'];
+ if(in_array($ensembl_id, $ensembl_id_array)){
+ $query2 = "SELECT * FROM `protein` WHERE `ensembl_id` = '$ensembl_id'";
+ $result2 = $connection->query($query2);
+ while($row2 = $result2->fetch_assoc()) {
+ $protein_id = $row2['id'];
+ //$query = "INSERT INTO `annotation_protein`(`protein_id`, `annotation_id`) VALUES ('$protein_id','$annotation_id');";
+ //fwrite($h2, $query . "\n");
+ $count++;
+ if($count == 1){
+ fwrite($h2, "INSERT INTO `annotation_protein` (`protein_id`, `annotation_id`) VALUES" . "\n");
+ fwrite($h2, "('$protein_id','$annotation_id')," . "\n");
+ }elseif($count < 300){
+ fwrite($h2, "('$protein_id','$annotation_id')," . "\n");
+ }elseif($count == 300){
+ fwrite($h2, "('$protein_id','$annotation_id');" . "\n");
+ $count = 0;
+ }
+ //$connection->query($query);
+ }
+ }
+ }
+
+ }
+
+ /*
+
+
+
+
+
+ $query = "SELECT * FROM `annotation`";
+
+
+ $this->container->get('profiler')->disable();
+ $handle = fopen('/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT `ensembl_id` FROM `protein` WHERE 1";
+ $result = $connection->query($query);
+ $ensembl_id_array = array();
+ while($row = $result->fetch_assoc()) {
+ $ensembl_id_array[] = $row['ensembl_id'];
+ }
+
+
+ $published_dataset_array = array("Yang et al.(2016)","Rolland et al.(2014)","Rual et al.(2005)","Yu et al.(2011)","Venkatesan et al.(2009)");
+
+ $dataset_array = array("Yang et al.(2016)" => "6", "unpublished space III" => "2", "unpublished GSM test space" => "3",
+ "Rolland et al.(2014)" => "1", "unpublished pilot screen" => "10", "Rual et al.(2005)" => "5",
+ "Yu et al.(2011)" => "4", "unpublished GS test space" => "7", "Venkatesan et al.(2009)" => "8");
+
+ $h = fopen('/home/mmee/Desktop/test_1.txt', 'w');
+ $h2 = fopen('/home/mmee/Desktop/test_2.txt', 'w');
+ $h3 = fopen('/home/mmee/Desktop/test_3.txt', 'w');
+ $count = 0;
+
+ $interaction_categories_array = array();
+ $interaction_dataset_array = array();
+
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+ fwrite($h2, $count . "\n");
+ if($count > 1){
+ try{
+ list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
+ $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
+ $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
+ $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
+ $xref_inteqractor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
+ $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
+ $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
+ $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
+
+
+ $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
+ $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
+
+ $interactor_A_id = false;
+ $interactor_B_id = false;
+
+ $query = "SELECT * FROM `protein` WHERE `ensembl_id` = '$interactor_A_ensembl_id'";
+
+ $result = $connection->query($query);
+ $interactor_A_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_A_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_A_array)){
+ $interactor_A_id = $interactor_A_array[0];
+ }
+ $query = "SELECT * FROM `protein` WHERE `ensembl_id` = '$interactor_B_ensembl_id'";
+ $result = $connection->query($query);
+
+ $interactor_B_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_B_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_B_array)){
+ $interactor_B_id = $interactor_B_array[0];
+ }
+
+ if($interactor_A_id && $interactor_B_id){
+
+ $query = "SELECT * FROM `interaction` WHERE (`interactor_A` = '$interactor_A_id' AND `interactor_B` = '$interactor_B_id') OR (`interactor_A` = '$interactor_B_id' AND `interactor_B` = '$interactor_A_id')";
+ $result = $connection->query($query);
+ $interaction_array = array();
+
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interaction_array[] = $row['id'];
+ }
+ }
+ $interaction_id = false;
+ if(array_key_exists(0, $interaction_array)){
+ $interaction_id = $interaction_array[0];
+ }
+
+ if($interaction_id){
+
+ if($interaction_detection_method == 'psi-mi:"MI:1356"(validated two hybrid)'){
+ $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('2','$interaction_id')";
+ $connection->query($query);
+ }elseif($interaction_detection_method == 'psi-mi:"MI:0397"(two hybrid array)'){
+ $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('3','$interaction_id')";
+ $connection->query($query);
+ }elseif($interaction_detection_method == 'psi-mi:"MI:1112"(two hybrid prey pooling approach)'){
+ $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('3','$interaction_id')";
+ $connection->query($query);
+ }
+
+ if(in_array($publication_first_author, $published_dataset_array)){
+ $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('1','$interaction_id')";
+ $connection->query($query);
+ }
+
+ $dataset_id = $dataset_array[$publication_first_author];
+ $query = "INSERT INTO `interaction_dataset`(`dataset_id`, `interaction_id`) VALUES ('$dataset_id','$interaction_id')";
+ $connection->query($query);
+
+ }
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+ $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
+
+ $file_row = 0;
+
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $file_row++;
+ fwrite($h3, $file_row . "\n");
+ if($file_row > 1){
+ try{
+
+ list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
+ $annotation_array = array();
+ $interactor_A_gene_name = self::getGeneName($V5);
+ $interactor_B_gene_name = self::getGeneName($V6);
+ $interactor_A_uniprot_id = self::getUniprotId($V1);
+ $interactor_B_uniprot_id = self::getUniprotId($V2);
+
+ if($interactor_A_gene_name && $interactor_B_gene_name){
+
+ $interactor_A_id = false;
+ $interactor_B_id = false;
+
+ $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_A_gene_name'";
+
+ $result = $connection->query($query);
+ $interactor_A_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_A_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_A_array)){
+ $interactor_A_id = $interactor_A_array[0];
+ }
+ $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_B_gene_name'";
+ $result = $connection->query($query);
+
+ $interactor_B_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_B_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_B_array)){
+ $interactor_B_id = $interactor_B_array[0];
+ }
+
+
+ if($interactor_A_id && $interactor_B_id){
+
+ $query = "SELECT * FROM `interaction` WHERE (`interactor_A` = '$interactor_A_id' AND `interactor_B` = '$interactor_B_id') OR (`interactor_A` = '$interactor_B_id' AND `interactor_B` = '$interactor_A_id')";
+ $result = $connection->query($query);
+ $interaction_array = array();
+
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interaction_array[] = $row['id'];
+ }
+ }
+ $interaction_id = false;
+ if(array_key_exists(0, $interaction_array)){
+ $interaction_id = $interaction_array[0];
+ }
+
+ if($interaction_id){
+ $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('4','$interaction_id')";
+ $connection->query($query);
+
+ $query = "INSERT INTO `interaction_dataset`(`dataset_id`, `interaction_id`) VALUES ('9','$interaction_id')";
+ $connection->query($query);
+
+ }
+ }
+ }
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+
+
+
+ */ /*
+ $h3 = fopen('/home/mmee/Desktop/test_3.txt', 'w');
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT `annotation_json`, `identifier` FROM `annotation` GROUP BY (`annotation_json`, `identifier`) WHERE `id` > 1192784 ";
+ $result = $connection->query($query);
+
+ while($row = $result->fetch_assoc()) {
+
+ $annotation_json = $row['annotation_json'];
+
+ $id_array = array();
+ $query2 = "SELECT * FROM `annotation` WHERE `annotation_json` = '$annotation_json'";
+ fwrite($h3, $query2 . "\n");
+ $result2 = $connection->query($query2);
+ while($row2 = $result2->fetch_assoc()) {
+ $id_array[] = $row2['id'];
+ }
+ foreach($id_array as $key => $id) {
+ if($key === 0) continue;
+ $query2 = "DELETE FROM `annotation` WHERE `id` = '$id'";
+ $connection->query($query2);
+ }
+ }
+
+ TRUNCATE TABLE `annotation`;
+
+
+
+ /*
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $handle1 = fopen('/home/mmee/Desktop/huri_project/interaction_detection_methods_classification.csv', 'r');
+ $file_row1 = 0;
+ $int_detec_meth_array = array();
+ $h1 = fopen('/home/mmee/Desktop/test_1.txt', 'w');
+ fwrite($h1, 'START1' . "\n");
+ while ($file_data = fgetcsv($handle1, 0, ",")){
+ $file_row1++;
+ if($file_row1 > 1){
+ list ($mi_id, $name, $class) = $file_data;
+ $int_detec_meth_array[$mi_id] = $class;
+
+ }
+ }
+ fwrite($h1, 'START2' . "\n");
+ $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+ $file_row = 0;
+ $not_found = array();
+ $annotation_interaction_array = array();
+ $count = 0;
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $file_row++;
+
+ if($file_row > 1){
+ //fwrite($h2, $file_row . "\n");
+ try{
+
+ list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
+ $annotation_array = array();
+ $interactor_A_gene_name = self::getGeneName($V5);
+ $interactor_B_gene_name = self::getGeneName($V6);
+ $interactor_A_uniprot_id = self::getUniprotId($V1);
+ $interactor_B_uniprot_id = self::getUniprotId($V2);
+
+ if($interactor_A_gene_name && $interactor_B_gene_name){
+
+ $interactor_A_id = false;
+ $interactor_B_id = false;
+
+ $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_A_gene_name'";
+
+ $result = $connection->query($query);
+ $interactor_A_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_A_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_A_array)){
+ $interactor_A_id = $interactor_A_array[0];
+ }
+ $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_B_gene_name'";
+ $result = $connection->query($query);
+
+ $interactor_B_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_B_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_B_array)){
+ $interactor_B_id = $interactor_B_array[0];
+ }
+
+
+ if($interactor_A_id && $interactor_B_id){
+
+ $query = "SELECT * FROM `interaction` WHERE (`interactor_A` = '$interactor_A_id' AND `interactor_B` = '$interactor_B_id') OR (`interactor_A` = '$interactor_B_id' AND `interactor_B` = '$interactor_A_id')";
+ $result = $connection->query($query);
+ $interaction_array = array();
+
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interaction_array[] = $row['id'];
+ }
+ }
+ $interaction_id = false;
+ if(array_key_exists(0, $interaction_array)){
+ $interaction_id = $interaction_array[0];
+ }
+
+ if($interaction_id){
+ $pmid_string = $V9;
+ $pmid_array = preg_split('/:/', $pmid_string);
+ $pmid = $pmid_array[1];
+
+ $method_string = $V7;
+ $method_array = preg_split('/:/', $method_string);
+
+ $method_string2 = $method_array[2];
+ $method_array2 = preg_split('/"/', $method_string2);
+ $method_id = $method_array2[0];
+
+ $method_array3 = preg_match('/.*\((.*)\).* /', $method_string);
+ $method_name = $method_array3[0];
+
+ $annotation_array['pmid'] = $pmid;
+ $annotation_array['experiment_type'] = $method_id;
+
+ $class = $int_detec_meth_array[$method_id];
+ if($class == 'B'){
+ $annotation_array['binary_type'] = 'binary';
+ }elseif($class == 'I'){
+ $annotation_array['binary_type'] = 'non_binary';
+ }elseif($class == 'N'){
+ $annotation_array['binary_type'] = 'na';
+ }
+ $annotation_array_json = json_encode($annotation_array);
+
+ $count++;
+ if($count == 1){
+ fwrite($h2, "INSERT INTO `annotation`(`id`, `annotation`, `identifier`, `annotation_type`, `type_name`) VALUES" . "\n");
+ fwrite($h2, "('','$annotation_array_json','$interaction_id','4','litbm_interaction')," . "\n");
+ }elseif($count < 300){
+ fwrite($h2, "('','$annotation_array_json','$interaction_id','4','litbm_interaction')," . "\n");
+ }elseif($count == 300){
+ fwrite($h2, "('','$annotation_array_json','$interaction_id','4','litbm_interaction');" . "\n");
+ $count = 0;
+ }
+ }
+ }
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+ /*
+
+ fwrite($h1, 'START3' . "\n");
+ $annotation_type = $this->getDoctrine()
+ ->getRepository(Annotation_Type::class)
+ ->find('4');
+ $count2 = 0;
+ foreach($annotation_interaction_array as $interaction_id => $annotation_array){
+ $count2++;
+ fwrite($h1, $count2 . "\n");
+ $interaction = self::getInteractionById($interaction_id);
+ foreach($annotation_array as $annotation_interaction){
+ $annotation_json = json_encode($annotation_interaction);
+ $annotation = new Annotation();
+ $annotation->setAnnotation($annotation_json);
+ $annotation->setAnnotationType($annotation_type);
+ $annotation->setIdentifier($interaction_id);
+ $annotation->setTypeName('litbm_interaction');
+ $interaction->addAnnotation($annotation);
+ $annotation->addInteraction($interaction);
+ $em = $this->getDoctrine()->getManager();
+ $em->getConnection()->getConfiguration()->setSQLLogger(null);
+ $em->persist($annotation);
+ $em->persist($interaction);
+ $em->flush();
+ }
+ }
+ */
+
+ /*
+ $this->container->get('profiler')->disable();
+ $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $query = "SELECT * FROM `interaction`";
+ $result = $connection->query($query);
+ $interaction_array = array();
+ while($row = $result->fetch_assoc()) {
+ $interactor_A = $row['interactor_A'];
+ $interactor_B = $row['interactor_B'];
+ $interaction_array[] = $interactor_A . '_' . $interactor_B;
+ }
+ $interaction_array2 = array();
+
+ $count = 0;
+ $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+ fwrite($handle3, $count . "\n");
+ if($count > 1){
+ try{
+ list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
+
+ $interactor_A_gene_name = self::getGeneName($V5);
+ $interactor_B_gene_name = self::getGeneName($V6);
+ $interactor_A_uniprot_id = self::getUniprotId($V1);
+ $interactor_B_uniprot_id = self::getUniprotId($V2);
+
+
+ if($interactor_A_gene_name && $interactor_B_gene_name){
+
+ $interactor_A = self::getProteinFromGeneName($interactor_A_gene_name);
+ $interactor_B = self::getProteinFromGeneName($interactor_B_gene_name);
+
+ if($interactor_A && $interactor_B){
+
+ $id_A = $interactor_A->getId();
+ $id_B = $interactor_B->getId();
+
+ $forward = $id_A . '_' . $id_B;
+ $reverse = $id_B . '_' . $id_A;
+
+ if(!in_array($forward, $interaction_array) && !in_array($reverse, $interaction_array)){
+
+ $query = "INSERT INTO `interaction`(`id`, `removed`, `interactor_A`, `interactor_B`) VALUES ('',0,$id_A,$id_B)";
+ $result = $connection->query($query);
+ $interaction_array[] = $forward;
+ $interaction_array2[] = $forward;
+
+ }elseif(!in_array($forward, $interaction_array2) && !in_array($reverse, $interaction_array2)){
+
+ $interaction_id = self::getInteraction($interactor_A, $interactor_B);
+ $query = "UPDATE `interaction` SET `removed`= 0 WHERE `id` = $interaction_id";
+ $result = $connection->query($query);
+ $interaction_array2[] = $forward;
+
+ }else{
+
+ }
+ }
+ }
+ }catch(Exception $e) {
+ }
+ }
+ }
+ */
+
+ /*
+ $this->container->get('profiler')->disable();
+ $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT `uniprot_id` FROM `protein` WHERE 1";
+ $result = $connection->query($query);
+ $uniprot_id_array = array();
+ while($row = $result->fetch_assoc()) {
+ $uniprot_id_array[] = $row['uniprot_id'];
+ }
+
+ $query = "SELECT `gene_name` FROM `protein` WHERE 1";
+ $result = $connection->query($query);
+ $gene_name_array = array();
+ while($row = $result->fetch_assoc()) {
+ $gene_name_array[] = $row['gene_name'];
+ }
+
+
+ scp -r transfer
+ sudo scp -r transfer/ openpip@192.168.81.209:/home/openpip/move
+
+
+ $count = 0;
+ $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+ fwrite($handle3, $count . "\n");
+ if($count > 1){
+ try{
+ list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
+
+ $interactor_A_gene_name = self::getGeneName($V5);
+ $interactor_B_gene_name = self::getGeneName($V6);
+ $interactor_A_uniprot_id = self::getUniprotId($V1);
+ $interactor_B_uniprot_id = self::getUniprotId($V2);
+
+ if(in_array($interactor_A_gene_name, $gene_name_array) == false && in_array($interactor_A_uniprot_id, $uniprot_id_array) == false ){
+ if($interactor_A_uniprot_id != $interactor_A_gene_name){
+ $protein = new Protein;
+ $protein->setGeneName($interactor_A_gene_name);
+ $interactor_A_uniprot_id = self::getUniprotId($V1);
+ $protein->setUniprotId($interactor_A_uniprot_id);
+ $doctrine_manager = $this->getDoctrine()->getManager();
+ $doctrine_manager->getConfiguration()->setSQLLogger(null);
+ $doctrine_manager->persist($protein);
+ $doctrine_manager->flush();
+ $gene_name_array[] = $interactor_A_gene_name;
+ $uniprot_id_array[] = $interactor_A_uniprot_id;
+ }
+ }
+
+ if(in_array($interactor_B_gene_name, $gene_name_array) == false && in_array($interactor_B_uniprot_id, $uniprot_id_array) == false ){
+ if($interactor_B_uniprot_id != $interactor_B_gene_name){
+ $protein = new Protein;
+ $protein->setGeneName($interactor_B_gene_name);
+ $protein->setUniprotId($interactor_B_uniprot_id);
+ $doctrine_manager = $this->getDoctrine()->getManager();
+ $doctrine_manager->getConfiguration()->setSQLLogger(null);
+ $doctrine_manager->persist($protein);
+ $doctrine_manager->flush();
+ $gene_name_array[] = $interactor_B_gene_name;
+ $uniprot_id_array[] = $interactor_B_uniprot_id;
+ }
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+ *//*
+
+ $em = $this->getDoctrine()->getManager();
+ $em->getConnection()->getConfiguration()->setSQLLogger(null);
+ $repository = $this->getDoctrine()->getRepository('AppBundle:Protein');
+
+ $interactions=$repository->findAll();
+
+ $protein_counts=array();
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT * FROM `interaction` WHERE `removed` = 0";
+ $result = $connection->query($query);
+
+
+ while($row = $result->fetch_assoc()){
+ $interactor_A = $row['interactor_A'];
+ $interactor_B = $row['interactor_B'];
+
+ if($row['removed'] == 0){
+ if($interactor_A == $interactor_B){
+ if(!array_key_exists($interactor_A, $protein_counts)){
+ $protein_counts[$interactor_A] = 1;
+ }else{
+ $protein_counts[$interactor_A] = $protein_counts[$interactor_A] + 1;
+ }
+ }else{
+ if(!array_key_exists($interactor_A, $protein_counts)){
+ $protein_counts[$interactor_A] = 1;
+ }else{
+ $protein_counts[$interactor_A] = $protein_counts[$interactor_A] + 1;
+ }
+ if(!array_key_exists($interactor_B, $protein_counts)){
+ $protein_counts[$interactor_B] = 1;
+ }else{
+ $protein_counts[$interactor_B] = $protein_counts[$interactor_B] + 1;
+ }
+ }
+ }
+ }
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+
+ foreach($protein_counts as $protein_id => $count){
+ $query = "UPDATE `protein` SET `number_of_interactions_in_database`= '$count' WHERE `id` = '$protein_id';";
+ fwrite($h2, $query . "\n");
+ //$connection->query($query);
+ }
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT * FROM `protein` GROUP BY `gene_name` HAVING COUNT(`gene_name`) > 1";
+ $result = $connection->query($query);
+ $count = 0;
+ $handle = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while($row = $result->fetch_assoc()) {
+
+ $original_protein_id = $row['id'];
+ $gene_name = $row['gene_name'];
+
+ $em = $this->getDoctrine()->getManager();
+ $em->getConnection()->getConfiguration()->setSQLLogger(null);
+ $query = $em->createQuery("SELECT p FROM AppBundle:Protein p WHERE p.gene_name = :gene_name");
+ $query->setParameter('gene_name', $gene_name);
+ $results = $query->getResult();
+
+ if(count($results == 2)){
+
+ $original_protein = $results[0];
+ $duplicate_protein = $results[1];
+ $duplicate_protein_id = $duplicate_protein->getId();
+
+ $em->remove($duplicate_protein);
+ $em->flush();
+
+
+ $duplicate_protein_ensembl_id = $duplicate_protein->getEnsemblId();
+
+ $original_protein->setEnsemblId($duplicate_protein_ensembl_id);
+ $em->persist($original_protein);
+ $em->flush();
+
+
+ $query = $em->createQuery("SELECT i FROM AppBundle:Interaction i WHERE i.interactor_A = :interactor_A OR i.interactor_B = :interactor_B");
+ $query->setParameter('interactor_A', $original_protein);
+ $query->setParameter('interactor_B', $original_protein);
+
+ $original_interactions = $query->getResult();
+ $original_interaction_array = array();
+
+ foreach($original_interactions as $original_interaction){
+
+ $int_A = $original_interaction->getInteractorA();
+ $int_B = $original_interaction->getInteractorB();
+
+ $int_A_id = $int_A->getId();
+ $int_B_id = $int_B->getId();
+ $original_interaction_array[] = $int_A_id . '_' . $int_B_id;
+
+ }
+ //fwrite($handle, json_encode($original_interaction_array));
+
+
+ $query = $em->createQuery("SELECT i FROM AppBundle:Interaction i WHERE i.interactor_A = :interactor_A OR i.interactor_B = :interactor_B");
+ $query->setParameter('interactor_A', $duplicate_protein);
+ $query->setParameter('interactor_B', $duplicate_protein);
+
+ $duplicate_interactions = $query->getResult();
+
+ foreach($duplicate_interactions as $duplicate_interaction){
+ $int_A = $duplicate_interaction->getInteractorA();
+ $int_B = $duplicate_interaction->getInteractorB();
+ $int_A_id = $int_A->getId();
+ $int_B_id = $int_B->getId();
+ $test_1 = '';
+ if($int_A_id == $duplicate_protein_id){
+ $test_1 = $original_protein_id . '_' . $int_B_id;
+ }
+ $test_2 = '';
+ if($int_B_id == $duplicate_protein_id){
+ $test_2 = $int_A_id . '_' . $original_protein_id;
+ }
+ if(in_array($test_1, $original_interaction_array) || in_array($test_2, $original_interaction_array)){
+ $em->remove($duplicate_interaction);
+ $em->flush();
+ }else{
+ if($int_A_id == $duplicate_protein_id){
+ $duplicate_interaction->setInteractorA($original_protein);
+ $em->persist($duplicate_interaction);
+ $em->flush();
+
+ }elseif($int_B_id == $duplicate_protein_id){
+ $duplicate_interaction->setInteractorB($original_protein);
+ $em->persist($duplicate_interaction);
+ $em->flush();
+ }
+ }
+ }
+
+
+ }
+ }
+
+ */
+ /*
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query2 = "SELECT * FROM `protein` WHERE id > 13923";
+ $result2 = $connection->query($query2);
+ $count = 0;
+ $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while($row = $result2->fetch_assoc()) {
+ $count++;
+ fwrite($handle3, $count . "\n");
+ $protein_id = $row['id'];
+ $uniprot_id = $row['uniprot_id'];
+ $gene_name_current = $row['gene_name'];
+ $sequence = null;
+ $description = null;
+ $entrez_id = null;
+ $gene_name = null;
+ $protein_name = null;
+ $ensembl_id = null;
+
+ $url = "http://www.uniprot.org/uniprot/$uniprot_id.xml";
+ try{
+ $str= @file_get_contents($url);
+ if($str != FALSE){
+ $str=str_replace('xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://uniprot.org/uniprot http://www.uniprot.org/support/docs/uniprot.xsd"', "", $str);
+ $crawler = new Crawler($str);
+ #Sequence
+ try{
+ $sequence_xml = $crawler->filter('uniprot > entry > sequence');
+ if($sequence_xml->count()){$sequence = $sequence_xml->text();}
+ }catch(Exception $e) {}
+
+ #Gene Name
+ try{
+ $gene_name_xml = $crawler->filter('uniprot > entry > gene > name');
+ if($gene_name_xml->count()){$gene_name = $gene_name_xml->text();}
+ }catch(Exception $e) {}
+
+ #Protein Name
+ try{
+ $protein_name_xml = $crawler->filter('uniprot > entry > protein > recommendedName > fullName');
+ if($protein_name_xml->count()){$protein_name = $protein_name_xml->text();}
+ }catch(Exception $e) {}
+
+ #Description
+ try{
+ $description_xml = $crawler->filter('uniprot > entry > comment[type="function"] > text');
+ if($description_xml->count()){$description = $description_xml->text();}
+ }catch(Exception $e) {}
+
+ #entrez_gene_id
+ try{
+ $entrez_gene_xml = $crawler->filter('uniprot > entry > dbReference[type="GeneID"]');
+ if($entrez_gene_xml->count()){$entrez_id = $entrez_gene_xml->attr("id");}
+ }catch(Exception $e) {}
+
+ #ensembl_gene_id
+ try{
+ $ensembl_xml = $crawler->filter('uniprot > entry > dbReference[type="Ensembl"] > property[type="gene ID"]');
+ if($ensembl_xml->count()){$ensembl_id = $ensembl_xml->attr("value");}
+ }catch(Exception $e) {}
+
+
+
+ $sql = 'UPDATE `protein` SET ';
+ $update_array = array();
+
+ if($gene_name != null && $gene_name_current == null){
+ $update_array[] = "`gene_name`= '$gene_name'";
+ }
+
+ if($protein_name != null){
+ $update_array[] = "`protein_name`= '$protein_name'";
+ }
+
+ if($entrez_id != null){
+ $update_array[] = "`entrez_id`= '$entrez_id'";
+ }
+
+ if($description != null){
+ $description = $connection->real_escape_string($description);
+ $update_array[] = "`description`= '$description'";
+ }
+
+ if($sequence != null){
+ $sequence = $connection->real_escape_string($sequence);
+ $update_array[] = "`sequence`= '$sequence'";
+ }
+
+ if($ensembl_id != null){
+ $ensembl_id = $connection->real_escape_string($ensembl_id);
+ $update_array[] = "`ensembl_id`= '$ensembl_id'";
+ }
+
+ $updates = join(',', $update_array);
+ $sql = $sql . $updates . " WHERE `id`= '$protein_id'";
+ $connection->query($sql);
+
+ $sequence = null;
+ $description = null;
+ $entrez_id = null;
+ $gene_name = null;
+ $protein_name = null;
+ $ensembl_id = null;
+ }
+ }catch(Exception $e) {
+ $sequence = null;
+ $description = null;
+ $entrez_id = null;
+ $gene_name = null;
+ $protein_name = null;
+ }
+ }
+ */
+
+ /*
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query2 = "SELECT * FROM `protein` WHERE `id` > 13744";
+ $result2 = $connection->query($query2);
+ $count = 0;
+ //$handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while($row = $result2->fetch_assoc()) {
+ $count++;
+
+ $protein_id = $row['id'];
+ $ensembl_id = $row['ensembl_id'];
+ $uniprot_id = $row['uniprot_id'];
+ $gene_name = $row['gene_name'];
+
+
+
+ if($ensembl_id != null && $ensembl_id != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$ensembl_id'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ if($uniprot_id != null && $uniprot_id != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$uniprot_id'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ if($gene_name != null && $gene_name != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$gene_name'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ }
+ */
+
+ /*
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query2 = "SELECT * FROM `protein` WHERE `id` > 13744";
+ $result2 = $connection->query($query2);
+ $count = 0;
+ //$handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while($row = $result2->fetch_assoc()) {
+ $count++;
+
+ $id = $row['id'];
+ $ensembl_id = $row['ensembl_id'];
+ $uniprot_id = $row['uniprot_id'];
+ $gene_name = $row['gene_name'];
+
+
+
+ if($ensembl_id != null && $ensembl_id != ''){
+ $query3 = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('','$ensembl_id','ensembl')";
+ $connection->query($query3);
+ }
+
+ if($uniprot_id != null && $uniprot_id != ''){
+ $query4 = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('','$uniprot_id','uniprotkb')";
+ $connection->query($query4);
+ }
+
+ if($gene_name != null && $gene_name != ''){
+ $query5 = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('','$gene_name','gene_name')";
+ $connection->query($query5);
+ }
+
+ }
+
+ */
+ /*
+ $this->container->get('profiler')->disable();
+ $handle = fopen('/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $query = "SELECT * FROM `interaction` WHERE `removed` = 0";
+ $result = $connection->query($query);
+ $interaction_array = array();
+ while($row = $result->fetch_assoc()) {
+ $interactor_A = $row['interactor_A'];
+ $interactor_B = $row['interactor_B'];
+ $interaction_array[] = $interactor_A . '_' . $interactor_B;
+ }
+ //$interaction_array2 = array();
+ $count = 0;
+ $handle2 = fopen('/home/mmee/Desktop/test.txt', 'w');
+ $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+ fwrite($handle3, $count . "\n");
+ if($count > 1){
+ try{
+ list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
+ $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
+ $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
+ $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
+ $xref_interactor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
+ $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
+ $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
+ $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
+
+ $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
+ $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
+
+ if($interactor_A_ensembl_id && $interactor_B_ensembl_id){
+
+ $interactor_A = self::getProteinFromEnsemblID($interactor_A_ensembl_id);
+ $interactor_B = self::getProteinFromEnsemblID($interactor_B_ensembl_id);
+
+ if($interactor_A && $interactor_B){
+
+
+ $id_A = $interactor_A->getId();
+ $id_B = $interactor_B->getId();
+
+ $forward = $id_A . '_' . $id_B;
+ $reverse = $id_B . '_' . $id_A;
+
+ if(!in_array($forward, $interaction_array) && !in_array($reverse, $interaction_array)){
+
+ $interaction_id = self::getInteraction($interactor_A, $interactor_B);
+ $query = "UPDATE `interaction` SET `removed`= 0 WHERE `id` = $interaction_id";
+ $result = $connection->query($query);
+ $interaction_array[] = $forward;
+
+ }
+
+ /*
+ $id_A = $interactor_A->getId();
+ $id_B = $interactor_B->getId();
+
+ $forward = $id_A . '_' . $id_B;
+ $reverse = $id_B . '_' . $id_A;
+
+ if(!in_array($forward, $interaction_array) && !in_array($reverse, $interaction_array)){
+
+ $score=null;
+ if($confidence_value != '-'){
+ $array = explode(": ",$confidence_value);
+ $score = $array[1];
+ }
+ $query = "INSERT INTO `interaction`(`id`, `score`, `removed`, `interactor_A`, `interactor_B`) VALUES ('',$score,0,$id_A,$id_B)";
+ $result = $connection->query($query);
+ $interaction_array[] = $forward;
+ $interaction_array2[] = $forward;
+
+ }elseif(!in_array($forward, $interaction_array2) && !in_array($reverse, $interaction_array2)){
+
+ $interaction_id = self::getInteraction($interactor_A, $interactor_B);
+ $query = "UPDATE `interaction` SET `removed`= 0 WHERE `id` = $interaction_id";
+ $result = $connection->query($query);
+ $interaction_array2[] = $forward;
+
+ }else{
+
+ }
+
+ }else{
+
+ fwrite($handle2, $count . "\n");
+ }
+ }else{
+
+ fwrite($handle2, $count . "\n");
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+ */
+
+ /*
+ $handle = fopen('/home/mmee/Desktop/huri_project/uniprot_reviewed.tab', 'r');
+ $handle2 = fopen('/home/mmee/Desktop/test.txt', 'w');
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $count = 0;
+ fwrite($handle2, 'START' . "\n");
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+
+ if($count > 1){
+
+ try{
+ list ($a, $b, $c, $d, $e, $f, $g, $h, $i, $j) = $file_data;
+ $array = explode(",",$b);
+ if(count($array) > 1){
+ foreach($array as $id){
+ try{
+ $query = "UPDATE `protein` SET `protein_name`= \"$g\",`uniprot_id`= \"$d\" WHERE `ensembl_id` = \"$id\"";
+ fwrite($handle2, $query . "\n");
+ $result = $connection->query($query);
+ }catch(Exception $e) {
+ }
+ }
+ }
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+ $this->container->get('profiler')->disable();
+ $handle = fopen('tab/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT `ensembl_id` FROM `protein` WHERE 1";
+ $result = $connection->query($query);
+ $ensembl_id_array = array();
+ while($row = $result->fetch_assoc()) {
+ $ensembl_id_array[] = $row['ensembl_id'];
+ }
+
+ $count = 0;
+
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+
+ if($count > 1){
+ try{
+ list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
+ $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
+ $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
+ $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
+ $xref_interactor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
+ $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
+ $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
+ $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
+
+ $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
+ $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
+
+ if(in_array($interactor_A_ensembl_id, $ensembl_id_array) == false){
+ $protein = new Protein;
+ $protein->setEnsemblId($interactor_A_ensembl_id);
+ $doctrine_manager = $this->getDoctrine()->getManager();
+ $doctrine_manager->getConfiguration()->setSQLLogger(null);
+ $doctrine_manager->persist($protein);
+ $doctrine_manager->flush();
+ $ensembl_id_array[] = $interactor_A_ensembl_id;
+ }
+
+ if(in_array($interactor_B_ensembl_id, $ensembl_id_array) == false){
+ $protein = new Protein;
+ $protein->setEnsemblId($interactor_B_ensembl_id);
+ $doctrine_manager = $this->getDoctrine()->getManager();
+ $doctrine_manager->getConfiguration()->setSQLLogger(null);
+ $doctrine_manager->persist($protein);
+ $doctrine_manager->flush();
+ $ensembl_id_array[] = $interactor_B_ensembl_id;
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+
+
+
+
+ SELECT * FROM `protein`
+ GROUP BY `gene_name`
+ HAVING COUNT(`gene_name`) > 1
+
+ SELECT * FROM `protein`
+ GROUP BY `ensembl_id`
+ HAVING COUNT(`ensembl_id`) > 1
+
+ */
+ /*
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $this->container->get('profiler')->disable();
+ $handle = fopen('/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
+ $h = fopen('/home/mmee/Desktop/test_1.txt', 'w');
+ $h2 = fopen('/home/mmee/Desktop/test_2.txt', 'w');
+
+ $dataset_array = array("Yang et al.(2016)" => "Yang-16", "unpublished space III" => "HI-III", "unpublished GSM test space" => "unpublished GSM test space",
+ "Rolland et al.(2014)" => "HI-II-14", "unpublished pilot screen" => "unpublished pilot screen", "Rual et al.(2005)" => "HI-I-05",
+ "Yu et al.(2011)" => "Yu-11", "unpublished GS test space" => "unpublished GS test space", "Venkatesan et al.(2009)" => "Venkatesan-09");
+
+ $repository = $this->getDoctrine()->getRepository('AppBundle:Annotation_Type');
+ $annotation_type=$repository->find('5');
+ $count = 0;
+
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+ fwrite($h, $count . "\n");
+ if($count > 244945){
+ try{
+ list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
+ $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
+ $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
+ $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
+ $xref_interactor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
+ $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
+ $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
+ $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
+
+ if($annotation_interactor_A != '-' && $annotation_interactor_B != '-'){
+
+ $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
+ $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
+
+ $interactor_A = self::getProteinFromEnsemblID($interactor_A_ensembl_id);
+ $interactor_B = self::getProteinFromEnsemblID($interactor_B_ensembl_id);
+ if($interactor_A && $interactor_B){
+ $interaction_id = self::getInteraction($interactor_A, $interactor_B);
+ $interaction = self::getInteractionById($interaction_id);
+
+ if($interaction){
+ $annotations = $interaction->getAnnotations();
+
+ $interactor_A_gene_name = $interactor_A->getGeneName();
+ $interactor_B_gene_name = $interactor_B->getGeneName();
+
+ $orf_A_id = self::getOrfId($interactor_A_alias);
+ $orf_B_id = self::getOrfId($interactor_B_alias);
+ $assay_version = self::getAssayVersion($annotation_interactor_A, $annotation_interactor_B);
+ $num_screens = self::getNumberOfScreens($interaction_annotation);
+
+ $experiment_annotation = array('dataset' => $dataset_array[$publication_first_author], 'dna_binding_domain' => $interactor_A_gene_name, 'activation_binding_domain' => $interactor_B_gene_name, 'orf_A_id' => $orf_A_id, 'orf_B_id' => $orf_B_id, 'assay_version' => $assay_version, 'num_screens' => $num_screens);
+ $experiment_annotation_json = json_encode($experiment_annotation);
+
+ $check = true;
+ foreach($annotations as $anno){
+ $annotation_json = $anno->getAnnotation();
+ if($annotation_json == $experiment_annotation_json){
+ $check = false;
+ }
+ }
+ if($check){
+
+ $query = " INSERT INTO `annotation`(`id`, `annotation`, `identifier`, `annotation_type`, `type_name`) VALUES ('','$experiment_annotation_json','$interaction_id','5','experiment')";
+ $result = $connection->query($query);
+
+ /*
+ $annotation = new Annotation();
+ $annotation->setAnnotation($experiment_annotation_json);
+ $annotation->setIdentifier($interaction_id);
+ $annotation->setAnnotationType($annotation_type);
+ $annotation->setTypeName('experiment');
+ $interaction->addAnnotation($annotation);
+ $annotation->addInteraction($interaction);
+ $em = $this->getDoctrine()->getManager();
+ $em->getConnection()->getConfiguration()->setSQLLogger(null);
+ $em->persist($annotation);
+ $em->persist($interaction);
+ $em->flush();
+
+ }
+ }
+ }
+ }
+
+ //$assay_version = self::getAssayVersion($annotation_interactor_A, $annotation_interactor_B);
+ //$assay_version_array["$assay_version"] = $assay_version_array["$assay_version"] +1;
+
+ // if($assay_version == null){
+ // fwrite($h2, $annotation_interactor_A . $annotation_interactor_B . "\n");
+ // }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+ */
+}
\ No newline at end of file
diff --git a/src/AppBundle/Controller/HomeController.php b/src/AppBundle/Controller/HomeController.php
index 50b73016..fb233026 100644
--- a/src/AppBundle/Controller/HomeController.php
+++ b/src/AppBundle/Controller/HomeController.php
@@ -33,1436 +33,11 @@ class HomeController extends Controller
public function homeAction(Request $request)
{
-/*
-
- $dataFile = "Interactor A Gene Name,Interactor B Gene Name,Interactor A Ensembl ID,Interactor B Ensembl ID,Interactor A Uniprot ID, Interactor B Uniprot ID,Interactor A Entrez ID,Interactor B Entrez ID,Confidence Score\r\n";
-
-
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query = "SELECT * FROM `interaction` WHERE `removed` = 0";
- $result = $connection->query($query);
- $count = 0;
- while($row = $result->fetch_assoc()) {
- $score = $row['score'];
- $interactor_A_index = $row['interactor_A'];
- $interactor_B_index = $row['interactor_B'];
-
- $interactor_A = $this->getDoctrine()
- ->getRepository(Protein::class)
- ->find($interactor_A_index);
-
- $interactor_B = $this->getDoctrine()
- ->getRepository(Protein::class)
- ->find($interactor_B_index);
-
-
- $uniprot_A = $interactor_A->getUniprotId();
- $ensembl_A = $interactor_A->getEnsemblId();
- $entrez_A = $interactor_A->getEntrezId();
- $gene_name_A = $interactor_A->getGeneName();
-
- $uniprot_B = $interactor_B->getUniprotId();
- $ensembl_B = $interactor_B->getEnsemblId();
- $entrez_B = $interactor_B->getEntrezId();
- $gene_name_B = $interactor_B->getGeneName();
-
- $dataFile = $dataFile . $gene_name_A . "," . $gene_name_B . "," . $ensembl_A . "," . $ensembl_B . "," . $uniprot_A . "," . $uniprot_B . "," . $entrez_A . "," . $entrez_B . "," . $score . "\r\n";
- }
-
-
- $h = fopen('/home/mmee/Desktop/file.txt', 'w');
- fwrite($h, $dataFile);
-
-
- */
-
- /*
-
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
- $h1 = fopen('/home/mmee/Desktop/test_1.sql', 'w');
- $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
-
- $handle = fopen('/home/mmee/Desktop/yeast_interactome.tsv', 'r');
- $file_row = 0;
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $file_row++;
- if($file_row > 1){
- try{
- list ($ensembl_id_A, $ensembl_id_B) = $file_data;
- $interactor_A = self::getProteinFromEnsemblID($ensembl_id_A);
- $interactor_B = self::getProteinFromEnsemblID($ensembl_id_B);
-
- if($interactor_A && $interactor_B){
-
- $id_A = $interactor_A->getId();
- $id_B = $interactor_B->getId();
-
- $query = "INSERT INTO `interaction`(`id`, `removed`, `interactor_A`, `interactor_B`) VALUES ('',0,$id_A,$id_B)";
- $result = $connection->query($query);
- }
-
- }catch(Exception $e) {
- }
- }
- }
-
-
-
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
- $h1 = fopen('/home/mmee/Desktop/test_1.sql', 'w');
- $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
-
- $handle = fopen('/home/mmee/Desktop/yeast_genes.tsv', 'r');
- $file_row = 0;
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $file_row++;
- if($file_row > 1){
- try{
- list ($ensembl_id, $uniprot, $entrez) = $file_data;
-
-
- $query = "INSERT INTO `protein`(`id`, `uniprot_id`, `ensembl_id`, `entrez_id`) VALUES ('', '$uniprot', '$ensembl_id', '$entrez');";
-
-
- fwrite($h1, $query . "\n");
-
- $query = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('', '$uniprot', 'uniprotkb');";
-
- fwrite($h2, $query . "\n");
- $query = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('', '$ensembl_id', 'ensembl');";
-
- fwrite($h2, $query . "\n");
-
- }catch(Exception $e) {
- }
- }
- }
-
-
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query2 = "SELECT * FROM `protein`";
- $result2 = $connection->query($query2);
- $count = 0;
- //$handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
- while($row = $result2->fetch_assoc()) {
- $count++;
-
- $protein_id = $row['id'];
- $ensembl_id = $row['ensembl_id'];
- $uniprot_id = $row['uniprot_id'];
- $gene_name = $row['gene_name'];
-
- $query = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('', '$gene_name', 'gene_name');";
- $connection->query($query);
-
- if($ensembl_id != null && $ensembl_id != ''){
- $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$ensembl_id'";
- $result3 = $connection->query($query3);
- while($row2 = $result3->fetch_assoc()) {
- $identifier_id = $row2['id'];
- $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
- $connection->query($query4);
-
- }
- }
-
- if($uniprot_id != null && $uniprot_id != ''){
- $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$uniprot_id'";
- $result3 = $connection->query($query3);
- while($row2 = $result3->fetch_assoc()) {
- $identifier_id = $row2['id'];
- $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
- $connection->query($query4);
-
- }
- }
-
- if($gene_name != null && $gene_name != ''){
- $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$gene_name'";
- $result3 = $connection->query($query3);
- while($row2 = $result3->fetch_assoc()) {
- $identifier_id = $row2['id'];
- $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
- $connection->query($query4);
-
- }
- }
-
- }
-
- */
- /*
- $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query = "SELECT * FROM `annotation` WHERE `annotation_type` = 5 ";
- $result = $connection->query($query);
- $count = 0;
- while($row = $result->fetch_assoc()) {
- $annotation_id = $row['id'];
- $interaction_id = $row['identifier'];
- $count++;
- if($count == 1){
- fwrite($h2, "INSERT INTO `annotation_interaction` (`interaction_id`, `annotation_id`) VALUES" . "\n");
- fwrite($h2, "('$interaction_id','$annotation_id')," . "\n");
- }elseif($count < 300){
- fwrite($h2, "('$interaction_id','$annotation_id')," . "\n");
- }elseif($count == 300){
- fwrite($h2, "('$interaction_id','$annotation_id');" . "\n");
- $count = 0;
- }
- }
-
-
- $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query = "SELECT `ensembl_id` FROM `protein` WHERE 1";
- $result = $connection->query($query);
- $ensembl_id_array = array();
- while($row = $result->fetch_assoc()) {
- $ensembl_id_array[] = $row['ensembl_id'];
- }
-
- $query = "SELECT * FROM `annotation` WHERE `annotation_type` = '1'";
- $result = $connection->query($query);
- $count = 0;
- while($row = $result->fetch_assoc()) {
- $annotation_id = $row['id'];
- $ensembl_id = $row['identifier'];
- if(in_array($ensembl_id, $ensembl_id_array)){
- $query2 = "SELECT * FROM `protein` WHERE `ensembl_id` = '$ensembl_id'";
- $result2 = $connection->query($query2);
- while($row2 = $result2->fetch_assoc()) {
- $protein_id = $row2['id'];
- //$query = "INSERT INTO `annotation_protein`(`protein_id`, `annotation_id`) VALUES ('$protein_id','$annotation_id');";
- //fwrite($h2, $query . "\n");
- $count++;
- if($count == 1){
- fwrite($h2, "INSERT INTO `annotation_protein` (`protein_id`, `annotation_id`) VALUES" . "\n");
- fwrite($h2, "('$protein_id','$annotation_id')," . "\n");
- }elseif($count < 300){
- fwrite($h2, "('$protein_id','$annotation_id')," . "\n");
- }elseif($count == 300){
- fwrite($h2, "('$protein_id','$annotation_id');" . "\n");
- $count = 0;
- }
- //$connection->query($query);
- }
- }
- }
-
- /*
- $query = "SELECT * FROM `annotation`";
-
-
- $this->container->get('profiler')->disable();
- $handle = fopen('/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
-
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query = "SELECT `ensembl_id` FROM `protein` WHERE 1";
- $result = $connection->query($query);
- $ensembl_id_array = array();
- while($row = $result->fetch_assoc()) {
- $ensembl_id_array[] = $row['ensembl_id'];
- }
-
-
- $published_dataset_array = array("Yang et al.(2016)","Rolland et al.(2014)","Rual et al.(2005)","Yu et al.(2011)","Venkatesan et al.(2009)");
-
- $dataset_array = array("Yang et al.(2016)" => "6", "unpublished space III" => "2", "unpublished GSM test space" => "3",
- "Rolland et al.(2014)" => "1", "unpublished pilot screen" => "10", "Rual et al.(2005)" => "5",
- "Yu et al.(2011)" => "4", "unpublished GS test space" => "7", "Venkatesan et al.(2009)" => "8");
-
- $h = fopen('/home/mmee/Desktop/test_1.txt', 'w');
- $h2 = fopen('/home/mmee/Desktop/test_2.txt', 'w');
- $h3 = fopen('/home/mmee/Desktop/test_3.txt', 'w');
- $count = 0;
-
- $interaction_categories_array = array();
- $interaction_dataset_array = array();
-
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $count++;
- fwrite($h2, $count . "\n");
- if($count > 1){
- try{
- list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
- $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
- $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
- $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
- $xref_inteqractor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
- $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
- $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
- $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
-
-
- $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
- $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
-
- $interactor_A_id = false;
- $interactor_B_id = false;
-
- $query = "SELECT * FROM `protein` WHERE `ensembl_id` = '$interactor_A_ensembl_id'";
-
- $result = $connection->query($query);
- $interactor_A_array = array();
- if($result){
- while($row = $result->fetch_assoc()) {
- $interactor_A_array[] = $row['id'];
- }
- }
-
- if(array_key_exists(0, $interactor_A_array)){
- $interactor_A_id = $interactor_A_array[0];
- }
- $query = "SELECT * FROM `protein` WHERE `ensembl_id` = '$interactor_B_ensembl_id'";
- $result = $connection->query($query);
-
- $interactor_B_array = array();
- if($result){
- while($row = $result->fetch_assoc()) {
- $interactor_B_array[] = $row['id'];
- }
- }
-
- if(array_key_exists(0, $interactor_B_array)){
- $interactor_B_id = $interactor_B_array[0];
- }
-
- if($interactor_A_id && $interactor_B_id){
-
- $query = "SELECT * FROM `interaction` WHERE (`interactor_A` = '$interactor_A_id' AND `interactor_B` = '$interactor_B_id') OR (`interactor_A` = '$interactor_B_id' AND `interactor_B` = '$interactor_A_id')";
- $result = $connection->query($query);
- $interaction_array = array();
-
- if($result){
- while($row = $result->fetch_assoc()) {
- $interaction_array[] = $row['id'];
- }
- }
- $interaction_id = false;
- if(array_key_exists(0, $interaction_array)){
- $interaction_id = $interaction_array[0];
- }
-
- if($interaction_id){
-
- if($interaction_detection_method == 'psi-mi:"MI:1356"(validated two hybrid)'){
- $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('2','$interaction_id')";
- $connection->query($query);
- }elseif($interaction_detection_method == 'psi-mi:"MI:0397"(two hybrid array)'){
- $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('3','$interaction_id')";
- $connection->query($query);
- }elseif($interaction_detection_method == 'psi-mi:"MI:1112"(two hybrid prey pooling approach)'){
- $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('3','$interaction_id')";
- $connection->query($query);
- }
-
- if(in_array($publication_first_author, $published_dataset_array)){
- $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('1','$interaction_id')";
- $connection->query($query);
- }
-
- $dataset_id = $dataset_array[$publication_first_author];
- $query = "INSERT INTO `interaction_dataset`(`dataset_id`, `interaction_id`) VALUES ('$dataset_id','$interaction_id')";
- $connection->query($query);
-
- }
- }
-
- }catch(Exception $e) {
- }
- }
- }
-
- $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
-
- $file_row = 0;
-
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $file_row++;
- fwrite($h3, $file_row . "\n");
- if($file_row > 1){
- try{
-
- list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
- $annotation_array = array();
- $interactor_A_gene_name = self::getGeneName($V5);
- $interactor_B_gene_name = self::getGeneName($V6);
- $interactor_A_uniprot_id = self::getUniprotId($V1);
- $interactor_B_uniprot_id = self::getUniprotId($V2);
-
- if($interactor_A_gene_name && $interactor_B_gene_name){
-
- $interactor_A_id = false;
- $interactor_B_id = false;
-
- $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_A_gene_name'";
-
- $result = $connection->query($query);
- $interactor_A_array = array();
- if($result){
- while($row = $result->fetch_assoc()) {
- $interactor_A_array[] = $row['id'];
- }
- }
-
- if(array_key_exists(0, $interactor_A_array)){
- $interactor_A_id = $interactor_A_array[0];
- }
- $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_B_gene_name'";
- $result = $connection->query($query);
-
- $interactor_B_array = array();
- if($result){
- while($row = $result->fetch_assoc()) {
- $interactor_B_array[] = $row['id'];
- }
- }
-
- if(array_key_exists(0, $interactor_B_array)){
- $interactor_B_id = $interactor_B_array[0];
- }
-
-
- if($interactor_A_id && $interactor_B_id){
-
- $query = "SELECT * FROM `interaction` WHERE (`interactor_A` = '$interactor_A_id' AND `interactor_B` = '$interactor_B_id') OR (`interactor_A` = '$interactor_B_id' AND `interactor_B` = '$interactor_A_id')";
- $result = $connection->query($query);
- $interaction_array = array();
-
- if($result){
- while($row = $result->fetch_assoc()) {
- $interaction_array[] = $row['id'];
- }
- }
- $interaction_id = false;
- if(array_key_exists(0, $interaction_array)){
- $interaction_id = $interaction_array[0];
- }
-
- if($interaction_id){
- $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('4','$interaction_id')";
- $connection->query($query);
-
- $query = "INSERT INTO `interaction_dataset`(`dataset_id`, `interaction_id`) VALUES ('9','$interaction_id')";
- $connection->query($query);
-
- }
- }
- }
- }catch(Exception $e) {
- }
- }
- }
- */ /*
- $h3 = fopen('/home/mmee/Desktop/test_3.txt', 'w');
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query = "SELECT `annotation_json`, `identifier` FROM `annotation` GROUP BY (`annotation_json`, `identifier`) WHERE `id` > 1192784 ";
- $result = $connection->query($query);
-
- while($row = $result->fetch_assoc()) {
-
- $annotation_json = $row['annotation_json'];
-
- $id_array = array();
- $query2 = "SELECT * FROM `annotation` WHERE `annotation_json` = '$annotation_json'";
- fwrite($h3, $query2 . "\n");
- $result2 = $connection->query($query2);
- while($row2 = $result2->fetch_assoc()) {
- $id_array[] = $row2['id'];
- }
- foreach($id_array as $key => $id) {
- if($key === 0) continue;
- $query2 = "DELETE FROM `annotation` WHERE `id` = '$id'";
- $connection->query($query2);
- }
- }
-
- TRUNCATE TABLE `annotation`;
-
-
-
- /*
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $handle1 = fopen('/home/mmee/Desktop/huri_project/interaction_detection_methods_classification.csv', 'r');
- $file_row1 = 0;
- $int_detec_meth_array = array();
- $h1 = fopen('/home/mmee/Desktop/test_1.txt', 'w');
- fwrite($h1, 'START1' . "\n");
- while ($file_data = fgetcsv($handle1, 0, ",")){
- $file_row1++;
- if($file_row1 > 1){
- list ($mi_id, $name, $class) = $file_data;
- $int_detec_meth_array[$mi_id] = $class;
-
- }
- }
- fwrite($h1, 'START2' . "\n");
- $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
- $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
- $file_row = 0;
- $not_found = array();
- $annotation_interaction_array = array();
- $count = 0;
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $file_row++;
-
- if($file_row > 1){
- //fwrite($h2, $file_row . "\n");
- try{
-
- list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
- $annotation_array = array();
- $interactor_A_gene_name = self::getGeneName($V5);
- $interactor_B_gene_name = self::getGeneName($V6);
- $interactor_A_uniprot_id = self::getUniprotId($V1);
- $interactor_B_uniprot_id = self::getUniprotId($V2);
-
- if($interactor_A_gene_name && $interactor_B_gene_name){
-
- $interactor_A_id = false;
- $interactor_B_id = false;
-
- $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_A_gene_name'";
-
- $result = $connection->query($query);
- $interactor_A_array = array();
- if($result){
- while($row = $result->fetch_assoc()) {
- $interactor_A_array[] = $row['id'];
- }
- }
-
- if(array_key_exists(0, $interactor_A_array)){
- $interactor_A_id = $interactor_A_array[0];
- }
- $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_B_gene_name'";
- $result = $connection->query($query);
-
- $interactor_B_array = array();
- if($result){
- while($row = $result->fetch_assoc()) {
- $interactor_B_array[] = $row['id'];
- }
- }
-
- if(array_key_exists(0, $interactor_B_array)){
- $interactor_B_id = $interactor_B_array[0];
- }
-
-
- if($interactor_A_id && $interactor_B_id){
-
- $query = "SELECT * FROM `interaction` WHERE (`interactor_A` = '$interactor_A_id' AND `interactor_B` = '$interactor_B_id') OR (`interactor_A` = '$interactor_B_id' AND `interactor_B` = '$interactor_A_id')";
- $result = $connection->query($query);
- $interaction_array = array();
-
- if($result){
- while($row = $result->fetch_assoc()) {
- $interaction_array[] = $row['id'];
- }
- }
- $interaction_id = false;
- if(array_key_exists(0, $interaction_array)){
- $interaction_id = $interaction_array[0];
- }
-
- if($interaction_id){
- $pmid_string = $V9;
- $pmid_array = preg_split('/:/', $pmid_string);
- $pmid = $pmid_array[1];
-
- $method_string = $V7;
- $method_array = preg_split('/:/', $method_string);
-
- $method_string2 = $method_array[2];
- $method_array2 = preg_split('/"/', $method_string2);
- $method_id = $method_array2[0];
-
- $method_array3 = preg_match('/.*\((.*)\).* /', $method_string);
- $method_name = $method_array3[0];
-
- $annotation_array['pmid'] = $pmid;
- $annotation_array['experiment_type'] = $method_id;
-
- $class = $int_detec_meth_array[$method_id];
- if($class == 'B'){
- $annotation_array['binary_type'] = 'binary';
- }elseif($class == 'I'){
- $annotation_array['binary_type'] = 'non_binary';
- }elseif($class == 'N'){
- $annotation_array['binary_type'] = 'na';
- }
- $annotation_array_json = json_encode($annotation_array);
-
- $count++;
- if($count == 1){
- fwrite($h2, "INSERT INTO `annotation`(`id`, `annotation`, `identifier`, `annotation_type`, `type_name`) VALUES" . "\n");
- fwrite($h2, "('','$annotation_array_json','$interaction_id','4','litbm_interaction')," . "\n");
- }elseif($count < 300){
- fwrite($h2, "('','$annotation_array_json','$interaction_id','4','litbm_interaction')," . "\n");
- }elseif($count == 300){
- fwrite($h2, "('','$annotation_array_json','$interaction_id','4','litbm_interaction');" . "\n");
- $count = 0;
- }
- }
- }
- }
-
- }catch(Exception $e) {
- }
- }
- }
-
-
- /*
-
- fwrite($h1, 'START3' . "\n");
- $annotation_type = $this->getDoctrine()
- ->getRepository(Annotation_Type::class)
- ->find('4');
- $count2 = 0;
- foreach($annotation_interaction_array as $interaction_id => $annotation_array){
- $count2++;
- fwrite($h1, $count2 . "\n");
- $interaction = self::getInteractionById($interaction_id);
- foreach($annotation_array as $annotation_interaction){
- $annotation_json = json_encode($annotation_interaction);
- $annotation = new Annotation();
- $annotation->setAnnotation($annotation_json);
- $annotation->setAnnotationType($annotation_type);
- $annotation->setIdentifier($interaction_id);
- $annotation->setTypeName('litbm_interaction');
- $interaction->addAnnotation($annotation);
- $annotation->addInteraction($interaction);
- $em = $this->getDoctrine()->getManager();
- $em->getConnection()->getConfiguration()->setSQLLogger(null);
- $em->persist($annotation);
- $em->persist($interaction);
- $em->flush();
- }
- }
- */
-
- /*
- $this->container->get('profiler')->disable();
- $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
-
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
- $query = "SELECT * FROM `interaction`";
- $result = $connection->query($query);
- $interaction_array = array();
- while($row = $result->fetch_assoc()) {
- $interactor_A = $row['interactor_A'];
- $interactor_B = $row['interactor_B'];
- $interaction_array[] = $interactor_A . '_' . $interactor_B;
- }
- $interaction_array2 = array();
-
- $count = 0;
- $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $count++;
- fwrite($handle3, $count . "\n");
- if($count > 1){
- try{
- list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
-
- $interactor_A_gene_name = self::getGeneName($V5);
- $interactor_B_gene_name = self::getGeneName($V6);
- $interactor_A_uniprot_id = self::getUniprotId($V1);
- $interactor_B_uniprot_id = self::getUniprotId($V2);
-
-
- if($interactor_A_gene_name && $interactor_B_gene_name){
-
- $interactor_A = self::getProteinFromGeneName($interactor_A_gene_name);
- $interactor_B = self::getProteinFromGeneName($interactor_B_gene_name);
-
- if($interactor_A && $interactor_B){
-
- $id_A = $interactor_A->getId();
- $id_B = $interactor_B->getId();
-
- $forward = $id_A . '_' . $id_B;
- $reverse = $id_B . '_' . $id_A;
-
- if(!in_array($forward, $interaction_array) && !in_array($reverse, $interaction_array)){
-
- $query = "INSERT INTO `interaction`(`id`, `removed`, `interactor_A`, `interactor_B`) VALUES ('',0,$id_A,$id_B)";
- $result = $connection->query($query);
- $interaction_array[] = $forward;
- $interaction_array2[] = $forward;
-
- }elseif(!in_array($forward, $interaction_array2) && !in_array($reverse, $interaction_array2)){
-
- $interaction_id = self::getInteraction($interactor_A, $interactor_B);
- $query = "UPDATE `interaction` SET `removed`= 0 WHERE `id` = $interaction_id";
- $result = $connection->query($query);
- $interaction_array2[] = $forward;
-
- }else{
-
- }
- }
- }
- }catch(Exception $e) {
- }
- }
- }
- */
-
- /*
- $this->container->get('profiler')->disable();
- $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
-
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query = "SELECT `uniprot_id` FROM `protein` WHERE 1";
- $result = $connection->query($query);
- $uniprot_id_array = array();
- while($row = $result->fetch_assoc()) {
- $uniprot_id_array[] = $row['uniprot_id'];
- }
-
- $query = "SELECT `gene_name` FROM `protein` WHERE 1";
- $result = $connection->query($query);
- $gene_name_array = array();
- while($row = $result->fetch_assoc()) {
- $gene_name_array[] = $row['gene_name'];
- }
-
-
- scp -r transfer
- sudo scp -r transfer/ openpip@192.168.81.209:/home/openpip/move
-
-
- $count = 0;
- $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $count++;
- fwrite($handle3, $count . "\n");
- if($count > 1){
- try{
- list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
-
- $interactor_A_gene_name = self::getGeneName($V5);
- $interactor_B_gene_name = self::getGeneName($V6);
- $interactor_A_uniprot_id = self::getUniprotId($V1);
- $interactor_B_uniprot_id = self::getUniprotId($V2);
-
- if(in_array($interactor_A_gene_name, $gene_name_array) == false && in_array($interactor_A_uniprot_id, $uniprot_id_array) == false ){
- if($interactor_A_uniprot_id != $interactor_A_gene_name){
- $protein = new Protein;
- $protein->setGeneName($interactor_A_gene_name);
- $interactor_A_uniprot_id = self::getUniprotId($V1);
- $protein->setUniprotId($interactor_A_uniprot_id);
- $doctrine_manager = $this->getDoctrine()->getManager();
- $doctrine_manager->getConfiguration()->setSQLLogger(null);
- $doctrine_manager->persist($protein);
- $doctrine_manager->flush();
- $gene_name_array[] = $interactor_A_gene_name;
- $uniprot_id_array[] = $interactor_A_uniprot_id;
- }
- }
-
- if(in_array($interactor_B_gene_name, $gene_name_array) == false && in_array($interactor_B_uniprot_id, $uniprot_id_array) == false ){
- if($interactor_B_uniprot_id != $interactor_B_gene_name){
- $protein = new Protein;
- $protein->setGeneName($interactor_B_gene_name);
- $protein->setUniprotId($interactor_B_uniprot_id);
- $doctrine_manager = $this->getDoctrine()->getManager();
- $doctrine_manager->getConfiguration()->setSQLLogger(null);
- $doctrine_manager->persist($protein);
- $doctrine_manager->flush();
- $gene_name_array[] = $interactor_B_gene_name;
- $uniprot_id_array[] = $interactor_B_uniprot_id;
- }
- }
-
- }catch(Exception $e) {
- }
- }
- }
-
- *//*
-
- $em = $this->getDoctrine()->getManager();
- $em->getConnection()->getConfiguration()->setSQLLogger(null);
- $repository = $this->getDoctrine()->getRepository('AppBundle:Protein');
-
- $interactions=$repository->findAll();
-
- $protein_counts=array();
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query = "SELECT * FROM `interaction` WHERE `removed` = 0";
- $result = $connection->query($query);
-
-
- while($row = $result->fetch_assoc()){
- $interactor_A = $row['interactor_A'];
- $interactor_B = $row['interactor_B'];
-
- if($row['removed'] == 0){
- if($interactor_A == $interactor_B){
- if(!array_key_exists($interactor_A, $protein_counts)){
- $protein_counts[$interactor_A] = 1;
- }else{
- $protein_counts[$interactor_A] = $protein_counts[$interactor_A] + 1;
- }
- }else{
- if(!array_key_exists($interactor_A, $protein_counts)){
- $protein_counts[$interactor_A] = 1;
- }else{
- $protein_counts[$interactor_A] = $protein_counts[$interactor_A] + 1;
- }
- if(!array_key_exists($interactor_B, $protein_counts)){
- $protein_counts[$interactor_B] = 1;
- }else{
- $protein_counts[$interactor_B] = $protein_counts[$interactor_B] + 1;
- }
- }
- }
- }
- $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
-
- foreach($protein_counts as $protein_id => $count){
- $query = "UPDATE `protein` SET `number_of_interactions_in_database`= '$count' WHERE `id` = '$protein_id';";
- fwrite($h2, $query . "\n");
- //$connection->query($query);
- }
-
-
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query = "SELECT * FROM `protein` GROUP BY `gene_name` HAVING COUNT(`gene_name`) > 1";
- $result = $connection->query($query);
- $count = 0;
- $handle = fopen('/home/mmee/Desktop/test2.txt', 'w');
- while($row = $result->fetch_assoc()) {
-
- $original_protein_id = $row['id'];
- $gene_name = $row['gene_name'];
-
- $em = $this->getDoctrine()->getManager();
- $em->getConnection()->getConfiguration()->setSQLLogger(null);
- $query = $em->createQuery("SELECT p FROM AppBundle:Protein p WHERE p.gene_name = :gene_name");
- $query->setParameter('gene_name', $gene_name);
- $results = $query->getResult();
-
- if(count($results == 2)){
-
- $original_protein = $results[0];
- $duplicate_protein = $results[1];
- $duplicate_protein_id = $duplicate_protein->getId();
-
- $em->remove($duplicate_protein);
- $em->flush();
-
-
- $duplicate_protein_ensembl_id = $duplicate_protein->getEnsemblId();
-
- $original_protein->setEnsemblId($duplicate_protein_ensembl_id);
- $em->persist($original_protein);
- $em->flush();
-
-
- $query = $em->createQuery("SELECT i FROM AppBundle:Interaction i WHERE i.interactor_A = :interactor_A OR i.interactor_B = :interactor_B");
- $query->setParameter('interactor_A', $original_protein);
- $query->setParameter('interactor_B', $original_protein);
-
- $original_interactions = $query->getResult();
- $original_interaction_array = array();
-
- foreach($original_interactions as $original_interaction){
-
- $int_A = $original_interaction->getInteractorA();
- $int_B = $original_interaction->getInteractorB();
-
- $int_A_id = $int_A->getId();
- $int_B_id = $int_B->getId();
- $original_interaction_array[] = $int_A_id . '_' . $int_B_id;
-
- }
- //fwrite($handle, json_encode($original_interaction_array));
-
-
- $query = $em->createQuery("SELECT i FROM AppBundle:Interaction i WHERE i.interactor_A = :interactor_A OR i.interactor_B = :interactor_B");
- $query->setParameter('interactor_A', $duplicate_protein);
- $query->setParameter('interactor_B', $duplicate_protein);
-
- $duplicate_interactions = $query->getResult();
-
- foreach($duplicate_interactions as $duplicate_interaction){
- $int_A = $duplicate_interaction->getInteractorA();
- $int_B = $duplicate_interaction->getInteractorB();
- $int_A_id = $int_A->getId();
- $int_B_id = $int_B->getId();
- $test_1 = '';
- if($int_A_id == $duplicate_protein_id){
- $test_1 = $original_protein_id . '_' . $int_B_id;
- }
- $test_2 = '';
- if($int_B_id == $duplicate_protein_id){
- $test_2 = $int_A_id . '_' . $original_protein_id;
- }
- if(in_array($test_1, $original_interaction_array) || in_array($test_2, $original_interaction_array)){
- $em->remove($duplicate_interaction);
- $em->flush();
- }else{
- if($int_A_id == $duplicate_protein_id){
- $duplicate_interaction->setInteractorA($original_protein);
- $em->persist($duplicate_interaction);
- $em->flush();
-
- }elseif($int_B_id == $duplicate_protein_id){
- $duplicate_interaction->setInteractorB($original_protein);
- $em->persist($duplicate_interaction);
- $em->flush();
- }
- }
- }
-
-
- }
- }
-
- */
- /*
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query2 = "SELECT * FROM `protein` WHERE id > 13923";
- $result2 = $connection->query($query2);
- $count = 0;
- $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
- while($row = $result2->fetch_assoc()) {
- $count++;
- fwrite($handle3, $count . "\n");
- $protein_id = $row['id'];
- $uniprot_id = $row['uniprot_id'];
- $gene_name_current = $row['gene_name'];
- $sequence = null;
- $description = null;
- $entrez_id = null;
- $gene_name = null;
- $protein_name = null;
- $ensembl_id = null;
-
- $url = "http://www.uniprot.org/uniprot/$uniprot_id.xml";
- try{
- $str= @file_get_contents($url);
- if($str != FALSE){
- $str=str_replace('xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://uniprot.org/uniprot http://www.uniprot.org/support/docs/uniprot.xsd"', "", $str);
- $crawler = new Crawler($str);
- #Sequence
- try{
- $sequence_xml = $crawler->filter('uniprot > entry > sequence');
- if($sequence_xml->count()){$sequence = $sequence_xml->text();}
- }catch(Exception $e) {}
-
- #Gene Name
- try{
- $gene_name_xml = $crawler->filter('uniprot > entry > gene > name');
- if($gene_name_xml->count()){$gene_name = $gene_name_xml->text();}
- }catch(Exception $e) {}
-
- #Protein Name
- try{
- $protein_name_xml = $crawler->filter('uniprot > entry > protein > recommendedName > fullName');
- if($protein_name_xml->count()){$protein_name = $protein_name_xml->text();}
- }catch(Exception $e) {}
-
- #Description
- try{
- $description_xml = $crawler->filter('uniprot > entry > comment[type="function"] > text');
- if($description_xml->count()){$description = $description_xml->text();}
- }catch(Exception $e) {}
-
- #entrez_gene_id
- try{
- $entrez_gene_xml = $crawler->filter('uniprot > entry > dbReference[type="GeneID"]');
- if($entrez_gene_xml->count()){$entrez_id = $entrez_gene_xml->attr("id");}
- }catch(Exception $e) {}
-
- #ensembl_gene_id
- try{
- $ensembl_xml = $crawler->filter('uniprot > entry > dbReference[type="Ensembl"] > property[type="gene ID"]');
- if($ensembl_xml->count()){$ensembl_id = $ensembl_xml->attr("value");}
- }catch(Exception $e) {}
-
-
-
- $sql = 'UPDATE `protein` SET ';
- $update_array = array();
-
- if($gene_name != null && $gene_name_current == null){
- $update_array[] = "`gene_name`= '$gene_name'";
- }
-
- if($protein_name != null){
- $update_array[] = "`protein_name`= '$protein_name'";
- }
-
- if($entrez_id != null){
- $update_array[] = "`entrez_id`= '$entrez_id'";
- }
-
- if($description != null){
- $description = $connection->real_escape_string($description);
- $update_array[] = "`description`= '$description'";
- }
-
- if($sequence != null){
- $sequence = $connection->real_escape_string($sequence);
- $update_array[] = "`sequence`= '$sequence'";
- }
-
- if($ensembl_id != null){
- $ensembl_id = $connection->real_escape_string($ensembl_id);
- $update_array[] = "`ensembl_id`= '$ensembl_id'";
- }
-
- $updates = join(',', $update_array);
- $sql = $sql . $updates . " WHERE `id`= '$protein_id'";
- $connection->query($sql);
-
- $sequence = null;
- $description = null;
- $entrez_id = null;
- $gene_name = null;
- $protein_name = null;
- $ensembl_id = null;
- }
- }catch(Exception $e) {
- $sequence = null;
- $description = null;
- $entrez_id = null;
- $gene_name = null;
- $protein_name = null;
- }
- }
- */
-
- /*
-
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query2 = "SELECT * FROM `protein` WHERE `id` > 13744";
- $result2 = $connection->query($query2);
- $count = 0;
- //$handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
- while($row = $result2->fetch_assoc()) {
- $count++;
-
- $protein_id = $row['id'];
- $ensembl_id = $row['ensembl_id'];
- $uniprot_id = $row['uniprot_id'];
- $gene_name = $row['gene_name'];
-
-
-
- if($ensembl_id != null && $ensembl_id != ''){
- $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$ensembl_id'";
- $result3 = $connection->query($query3);
- while($row2 = $result3->fetch_assoc()) {
- $identifier_id = $row2['id'];
- $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
- $connection->query($query4);
-
- }
- }
-
- if($uniprot_id != null && $uniprot_id != ''){
- $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$uniprot_id'";
- $result3 = $connection->query($query3);
- while($row2 = $result3->fetch_assoc()) {
- $identifier_id = $row2['id'];
- $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
- $connection->query($query4);
-
- }
- }
-
- if($gene_name != null && $gene_name != ''){
- $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$gene_name'";
- $result3 = $connection->query($query3);
- while($row2 = $result3->fetch_assoc()) {
- $identifier_id = $row2['id'];
- $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
- $connection->query($query4);
-
- }
- }
-
- }
- */
-
- /*
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query2 = "SELECT * FROM `protein` WHERE `id` > 13744";
- $result2 = $connection->query($query2);
- $count = 0;
- //$handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
- while($row = $result2->fetch_assoc()) {
- $count++;
-
- $id = $row['id'];
- $ensembl_id = $row['ensembl_id'];
- $uniprot_id = $row['uniprot_id'];
- $gene_name = $row['gene_name'];
-
-
-
- if($ensembl_id != null && $ensembl_id != ''){
- $query3 = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('','$ensembl_id','ensembl')";
- $connection->query($query3);
- }
-
- if($uniprot_id != null && $uniprot_id != ''){
- $query4 = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('','$uniprot_id','uniprotkb')";
- $connection->query($query4);
- }
-
- if($gene_name != null && $gene_name != ''){
- $query5 = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('','$gene_name','gene_name')";
- $connection->query($query5);
- }
-
- }
-
- */
- /*
- $this->container->get('profiler')->disable();
- $handle = fopen('/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
- $query = "SELECT * FROM `interaction` WHERE `removed` = 0";
- $result = $connection->query($query);
- $interaction_array = array();
- while($row = $result->fetch_assoc()) {
- $interactor_A = $row['interactor_A'];
- $interactor_B = $row['interactor_B'];
- $interaction_array[] = $interactor_A . '_' . $interactor_B;
- }
- //$interaction_array2 = array();
- $count = 0;
- $handle2 = fopen('/home/mmee/Desktop/test.txt', 'w');
- $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
-
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $count++;
- fwrite($handle3, $count . "\n");
- if($count > 1){
- try{
- list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
- $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
- $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
- $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
- $xref_interactor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
- $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
- $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
- $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
-
- $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
- $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
-
- if($interactor_A_ensembl_id && $interactor_B_ensembl_id){
-
- $interactor_A = self::getProteinFromEnsemblID($interactor_A_ensembl_id);
- $interactor_B = self::getProteinFromEnsemblID($interactor_B_ensembl_id);
-
- if($interactor_A && $interactor_B){
-
-
- $id_A = $interactor_A->getId();
- $id_B = $interactor_B->getId();
-
- $forward = $id_A . '_' . $id_B;
- $reverse = $id_B . '_' . $id_A;
-
- if(!in_array($forward, $interaction_array) && !in_array($reverse, $interaction_array)){
-
- $interaction_id = self::getInteraction($interactor_A, $interactor_B);
- $query = "UPDATE `interaction` SET `removed`= 0 WHERE `id` = $interaction_id";
- $result = $connection->query($query);
- $interaction_array[] = $forward;
-
- }
-
- /*
- $id_A = $interactor_A->getId();
- $id_B = $interactor_B->getId();
-
- $forward = $id_A . '_' . $id_B;
- $reverse = $id_B . '_' . $id_A;
-
- if(!in_array($forward, $interaction_array) && !in_array($reverse, $interaction_array)){
-
- $score=null;
- if($confidence_value != '-'){
- $array = explode(": ",$confidence_value);
- $score = $array[1];
- }
- $query = "INSERT INTO `interaction`(`id`, `score`, `removed`, `interactor_A`, `interactor_B`) VALUES ('',$score,0,$id_A,$id_B)";
- $result = $connection->query($query);
- $interaction_array[] = $forward;
- $interaction_array2[] = $forward;
-
- }elseif(!in_array($forward, $interaction_array2) && !in_array($reverse, $interaction_array2)){
-
- $interaction_id = self::getInteraction($interactor_A, $interactor_B);
- $query = "UPDATE `interaction` SET `removed`= 0 WHERE `id` = $interaction_id";
- $result = $connection->query($query);
- $interaction_array2[] = $forward;
-
- }else{
-
- }
-
- }else{
-
- fwrite($handle2, $count . "\n");
- }
- }else{
-
- fwrite($handle2, $count . "\n");
- }
-
- }catch(Exception $e) {
- }
- }
- }
- */
-
- /*
- $handle = fopen('/home/mmee/Desktop/huri_project/uniprot_reviewed.tab', 'r');
- $handle2 = fopen('/home/mmee/Desktop/test.txt', 'w');
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
- $count = 0;
- fwrite($handle2, 'START' . "\n");
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $count++;
-
- if($count > 1){
-
- try{
- list ($a, $b, $c, $d, $e, $f, $g, $h, $i, $j) = $file_data;
- $array = explode(",",$b);
- if(count($array) > 1){
- foreach($array as $id){
- try{
- $query = "UPDATE `protein` SET `protein_name`= \"$g\",`uniprot_id`= \"$d\" WHERE `ensembl_id` = \"$id\"";
- fwrite($handle2, $query . "\n");
- $result = $connection->query($query);
- }catch(Exception $e) {
- }
- }
- }
- }catch(Exception $e) {
- }
- }
- }
-
-
- $this->container->get('profiler')->disable();
- $handle = fopen('tab/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
-
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $query = "SELECT `ensembl_id` FROM `protein` WHERE 1";
- $result = $connection->query($query);
- $ensembl_id_array = array();
- while($row = $result->fetch_assoc()) {
- $ensembl_id_array[] = $row['ensembl_id'];
- }
-
- $count = 0;
-
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $count++;
-
- if($count > 1){
- try{
- list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
- $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
- $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
- $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
- $xref_interactor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
- $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
- $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
- $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
-
- $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
- $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
-
- if(in_array($interactor_A_ensembl_id, $ensembl_id_array) == false){
- $protein = new Protein;
- $protein->setEnsemblId($interactor_A_ensembl_id);
- $doctrine_manager = $this->getDoctrine()->getManager();
- $doctrine_manager->getConfiguration()->setSQLLogger(null);
- $doctrine_manager->persist($protein);
- $doctrine_manager->flush();
- $ensembl_id_array[] = $interactor_A_ensembl_id;
- }
-
- if(in_array($interactor_B_ensembl_id, $ensembl_id_array) == false){
- $protein = new Protein;
- $protein->setEnsemblId($interactor_B_ensembl_id);
- $doctrine_manager = $this->getDoctrine()->getManager();
- $doctrine_manager->getConfiguration()->setSQLLogger(null);
- $doctrine_manager->persist($protein);
- $doctrine_manager->flush();
- $ensembl_id_array[] = $interactor_B_ensembl_id;
- }
-
- }catch(Exception $e) {
- }
- }
- }
-
-
-
-
-
-
- SELECT * FROM `protein`
- GROUP BY `gene_name`
- HAVING COUNT(`gene_name`) > 1
-
- SELECT * FROM `protein`
- GROUP BY `ensembl_id`
- HAVING COUNT(`ensembl_id`) > 1
-
- */
- /*
- $functions = $this->get('app.functions');
- $connection = $functions->mysql_connect();
-
- $this->container->get('profiler')->disable();
- $handle = fopen('/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
- $h = fopen('/home/mmee/Desktop/test_1.txt', 'w');
- $h2 = fopen('/home/mmee/Desktop/test_2.txt', 'w');
-
- $dataset_array = array("Yang et al.(2016)" => "Yang-16", "unpublished space III" => "HI-III", "unpublished GSM test space" => "unpublished GSM test space",
- "Rolland et al.(2014)" => "HI-II-14", "unpublished pilot screen" => "unpublished pilot screen", "Rual et al.(2005)" => "HI-I-05",
- "Yu et al.(2011)" => "Yu-11", "unpublished GS test space" => "unpublished GS test space", "Venkatesan et al.(2009)" => "Venkatesan-09");
-
- $repository = $this->getDoctrine()->getRepository('AppBundle:Annotation_Type');
- $annotation_type=$repository->find('5');
- $count = 0;
-
- while ($file_data = fgetcsv($handle, 0, "\t")){
- $count++;
- fwrite($h, $count . "\n");
- if($count > 244945){
- try{
- list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
- $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
- $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
- $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
- $xref_interactor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
- $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
- $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
- $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
-
- if($annotation_interactor_A != '-' && $annotation_interactor_B != '-'){
-
- $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
- $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
-
- $interactor_A = self::getProteinFromEnsemblID($interactor_A_ensembl_id);
- $interactor_B = self::getProteinFromEnsemblID($interactor_B_ensembl_id);
- if($interactor_A && $interactor_B){
- $interaction_id = self::getInteraction($interactor_A, $interactor_B);
- $interaction = self::getInteractionById($interaction_id);
-
- if($interaction){
- $annotations = $interaction->getAnnotations();
-
- $interactor_A_gene_name = $interactor_A->getGeneName();
- $interactor_B_gene_name = $interactor_B->getGeneName();
-
- $orf_A_id = self::getOrfId($interactor_A_alias);
- $orf_B_id = self::getOrfId($interactor_B_alias);
- $assay_version = self::getAssayVersion($annotation_interactor_A, $annotation_interactor_B);
- $num_screens = self::getNumberOfScreens($interaction_annotation);
-
- $experiment_annotation = array('dataset' => $dataset_array[$publication_first_author], 'dna_binding_domain' => $interactor_A_gene_name, 'activation_binding_domain' => $interactor_B_gene_name, 'orf_A_id' => $orf_A_id, 'orf_B_id' => $orf_B_id, 'assay_version' => $assay_version, 'num_screens' => $num_screens);
- $experiment_annotation_json = json_encode($experiment_annotation);
-
- $check = true;
- foreach($annotations as $anno){
- $annotation_json = $anno->getAnnotation();
- if($annotation_json == $experiment_annotation_json){
- $check = false;
- }
- }
- if($check){
-
- $query = " INSERT INTO `annotation`(`id`, `annotation`, `identifier`, `annotation_type`, `type_name`) VALUES ('','$experiment_annotation_json','$interaction_id','5','experiment')";
- $result = $connection->query($query);
-
- /*
- $annotation = new Annotation();
- $annotation->setAnnotation($experiment_annotation_json);
- $annotation->setIdentifier($interaction_id);
- $annotation->setAnnotationType($annotation_type);
- $annotation->setTypeName('experiment');
- $interaction->addAnnotation($annotation);
- $annotation->addInteraction($interaction);
- $em = $this->getDoctrine()->getManager();
- $em->getConnection()->getConfiguration()->setSQLLogger(null);
- $em->persist($annotation);
- $em->persist($interaction);
- $em->flush();
-
- }
- }
- }
- }
-
- //$assay_version = self::getAssayVersion($annotation_interactor_A, $annotation_interactor_B);
- //$assay_version_array["$assay_version"] = $assay_version_array["$assay_version"] +1;
-
- // if($assay_version == null){
- // fwrite($h2, $annotation_interactor_A . $annotation_interactor_B . "\n");
- // }
-
- }catch(Exception $e) {
- }
- }
- }
-*/
+
$rand_protein=self::getrandomprotein();
-
+ // var_dump($rand_protein);
+ // die();
$functions = $this->get('app.functions');
$counts = self::getCounts();
@@ -1515,6 +90,1436 @@ public function homeAction(Request $request)
));
+
+
+ /*
+
+ $dataFile = "Interactor A Gene Name,Interactor B Gene Name,Interactor A Ensembl ID,Interactor B Ensembl ID,Interactor A Uniprot ID, Interactor B Uniprot ID,Interactor A Entrez ID,Interactor B Entrez ID,Confidence Score\r\n";
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT * FROM `interaction` WHERE `removed` = 0";
+ $result = $connection->query($query);
+ $count = 0;
+ while($row = $result->fetch_assoc()) {
+ $score = $row['score'];
+ $interactor_A_index = $row['interactor_A'];
+ $interactor_B_index = $row['interactor_B'];
+
+ $interactor_A = $this->getDoctrine()
+ ->getRepository(Protein::class)
+ ->find($interactor_A_index);
+
+ $interactor_B = $this->getDoctrine()
+ ->getRepository(Protein::class)
+ ->find($interactor_B_index);
+
+
+ $uniprot_A = $interactor_A->getUniprotId();
+ $ensembl_A = $interactor_A->getEnsemblId();
+ $entrez_A = $interactor_A->getEntrezId();
+ $gene_name_A = $interactor_A->getGeneName();
+
+ $uniprot_B = $interactor_B->getUniprotId();
+ $ensembl_B = $interactor_B->getEnsemblId();
+ $entrez_B = $interactor_B->getEntrezId();
+ $gene_name_B = $interactor_B->getGeneName();
+
+ $dataFile = $dataFile . $gene_name_A . "," . $gene_name_B . "," . $ensembl_A . "," . $ensembl_B . "," . $uniprot_A . "," . $uniprot_B . "," . $entrez_A . "," . $entrez_B . "," . $score . "\r\n";
+ }
+
+
+ $h = fopen('/home/mmee/Desktop/file.txt', 'w');
+ fwrite($h, $dataFile);
+
+
+ */
+
+ /*
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $h1 = fopen('/home/mmee/Desktop/test_1.sql', 'w');
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+
+ $handle = fopen('/home/mmee/Desktop/yeast_interactome.tsv', 'r');
+ $file_row = 0;
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $file_row++;
+ if($file_row > 1){
+ try{
+ list ($ensembl_id_A, $ensembl_id_B) = $file_data;
+ $interactor_A = self::getProteinFromEnsemblID($ensembl_id_A);
+ $interactor_B = self::getProteinFromEnsemblID($ensembl_id_B);
+
+ if($interactor_A && $interactor_B){
+
+ $id_A = $interactor_A->getId();
+ $id_B = $interactor_B->getId();
+
+ $query = "INSERT INTO `interaction`(`id`, `removed`, `interactor_A`, `interactor_B`) VALUES ('',0,$id_A,$id_B)";
+ $result = $connection->query($query);
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $h1 = fopen('/home/mmee/Desktop/test_1.sql', 'w');
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+
+ $handle = fopen('/home/mmee/Desktop/yeast_genes.tsv', 'r');
+ $file_row = 0;
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $file_row++;
+ if($file_row > 1){
+ try{
+ list ($ensembl_id, $uniprot, $entrez) = $file_data;
+
+
+ $query = "INSERT INTO `protein`(`id`, `uniprot_id`, `ensembl_id`, `entrez_id`) VALUES ('', '$uniprot', '$ensembl_id', '$entrez');";
+
+
+ fwrite($h1, $query . "\n");
+
+ $query = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('', '$uniprot', 'uniprotkb');";
+
+ fwrite($h2, $query . "\n");
+ $query = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('', '$ensembl_id', 'ensembl');";
+
+ fwrite($h2, $query . "\n");
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query2 = "SELECT * FROM `protein`";
+ $result2 = $connection->query($query2);
+ $count = 0;
+ //$handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while($row = $result2->fetch_assoc()) {
+ $count++;
+
+ $protein_id = $row['id'];
+ $ensembl_id = $row['ensembl_id'];
+ $uniprot_id = $row['uniprot_id'];
+ $gene_name = $row['gene_name'];
+
+ $query = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('', '$gene_name', 'gene_name');";
+ $connection->query($query);
+
+ if($ensembl_id != null && $ensembl_id != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$ensembl_id'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ if($uniprot_id != null && $uniprot_id != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$uniprot_id'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ if($gene_name != null && $gene_name != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$gene_name'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ }
+
+ */
+ /*
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT * FROM `annotation` WHERE `annotation_type` = 5 ";
+ $result = $connection->query($query);
+ $count = 0;
+ while($row = $result->fetch_assoc()) {
+ $annotation_id = $row['id'];
+ $interaction_id = $row['identifier'];
+ $count++;
+ if($count == 1){
+ fwrite($h2, "INSERT INTO `annotation_interaction` (`interaction_id`, `annotation_id`) VALUES" . "\n");
+ fwrite($h2, "('$interaction_id','$annotation_id')," . "\n");
+ }elseif($count < 300){
+ fwrite($h2, "('$interaction_id','$annotation_id')," . "\n");
+ }elseif($count == 300){
+ fwrite($h2, "('$interaction_id','$annotation_id');" . "\n");
+ $count = 0;
+ }
+ }
+
+
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT `ensembl_id` FROM `protein` WHERE 1";
+ $result = $connection->query($query);
+ $ensembl_id_array = array();
+ while($row = $result->fetch_assoc()) {
+ $ensembl_id_array[] = $row['ensembl_id'];
+ }
+
+ $query = "SELECT * FROM `annotation` WHERE `annotation_type` = '1'";
+ $result = $connection->query($query);
+ $count = 0;
+ while($row = $result->fetch_assoc()) {
+ $annotation_id = $row['id'];
+ $ensembl_id = $row['identifier'];
+ if(in_array($ensembl_id, $ensembl_id_array)){
+ $query2 = "SELECT * FROM `protein` WHERE `ensembl_id` = '$ensembl_id'";
+ $result2 = $connection->query($query2);
+ while($row2 = $result2->fetch_assoc()) {
+ $protein_id = $row2['id'];
+ //$query = "INSERT INTO `annotation_protein`(`protein_id`, `annotation_id`) VALUES ('$protein_id','$annotation_id');";
+ //fwrite($h2, $query . "\n");
+ $count++;
+ if($count == 1){
+ fwrite($h2, "INSERT INTO `annotation_protein` (`protein_id`, `annotation_id`) VALUES" . "\n");
+ fwrite($h2, "('$protein_id','$annotation_id')," . "\n");
+ }elseif($count < 300){
+ fwrite($h2, "('$protein_id','$annotation_id')," . "\n");
+ }elseif($count == 300){
+ fwrite($h2, "('$protein_id','$annotation_id');" . "\n");
+ $count = 0;
+ }
+ //$connection->query($query);
+ }
+ }
+ }
+
+ /*
+ $query = "SELECT * FROM `annotation`";
+
+
+ $this->container->get('profiler')->disable();
+ $handle = fopen('/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT `ensembl_id` FROM `protein` WHERE 1";
+ $result = $connection->query($query);
+ $ensembl_id_array = array();
+ while($row = $result->fetch_assoc()) {
+ $ensembl_id_array[] = $row['ensembl_id'];
+ }
+
+
+ $published_dataset_array = array("Yang et al.(2016)","Rolland et al.(2014)","Rual et al.(2005)","Yu et al.(2011)","Venkatesan et al.(2009)");
+
+ $dataset_array = array("Yang et al.(2016)" => "6", "unpublished space III" => "2", "unpublished GSM test space" => "3",
+ "Rolland et al.(2014)" => "1", "unpublished pilot screen" => "10", "Rual et al.(2005)" => "5",
+ "Yu et al.(2011)" => "4", "unpublished GS test space" => "7", "Venkatesan et al.(2009)" => "8");
+
+ $h = fopen('/home/mmee/Desktop/test_1.txt', 'w');
+ $h2 = fopen('/home/mmee/Desktop/test_2.txt', 'w');
+ $h3 = fopen('/home/mmee/Desktop/test_3.txt', 'w');
+ $count = 0;
+
+ $interaction_categories_array = array();
+ $interaction_dataset_array = array();
+
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+ fwrite($h2, $count . "\n");
+ if($count > 1){
+ try{
+ list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
+ $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
+ $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
+ $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
+ $xref_inteqractor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
+ $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
+ $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
+ $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
+
+
+ $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
+ $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
+
+ $interactor_A_id = false;
+ $interactor_B_id = false;
+
+ $query = "SELECT * FROM `protein` WHERE `ensembl_id` = '$interactor_A_ensembl_id'";
+
+ $result = $connection->query($query);
+ $interactor_A_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_A_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_A_array)){
+ $interactor_A_id = $interactor_A_array[0];
+ }
+ $query = "SELECT * FROM `protein` WHERE `ensembl_id` = '$interactor_B_ensembl_id'";
+ $result = $connection->query($query);
+
+ $interactor_B_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_B_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_B_array)){
+ $interactor_B_id = $interactor_B_array[0];
+ }
+
+ if($interactor_A_id && $interactor_B_id){
+
+ $query = "SELECT * FROM `interaction` WHERE (`interactor_A` = '$interactor_A_id' AND `interactor_B` = '$interactor_B_id') OR (`interactor_A` = '$interactor_B_id' AND `interactor_B` = '$interactor_A_id')";
+ $result = $connection->query($query);
+ $interaction_array = array();
+
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interaction_array[] = $row['id'];
+ }
+ }
+ $interaction_id = false;
+ if(array_key_exists(0, $interaction_array)){
+ $interaction_id = $interaction_array[0];
+ }
+
+ if($interaction_id){
+
+ if($interaction_detection_method == 'psi-mi:"MI:1356"(validated two hybrid)'){
+ $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('2','$interaction_id')";
+ $connection->query($query);
+ }elseif($interaction_detection_method == 'psi-mi:"MI:0397"(two hybrid array)'){
+ $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('3','$interaction_id')";
+ $connection->query($query);
+ }elseif($interaction_detection_method == 'psi-mi:"MI:1112"(two hybrid prey pooling approach)'){
+ $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('3','$interaction_id')";
+ $connection->query($query);
+ }
+
+ if(in_array($publication_first_author, $published_dataset_array)){
+ $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('1','$interaction_id')";
+ $connection->query($query);
+ }
+
+ $dataset_id = $dataset_array[$publication_first_author];
+ $query = "INSERT INTO `interaction_dataset`(`dataset_id`, `interaction_id`) VALUES ('$dataset_id','$interaction_id')";
+ $connection->query($query);
+
+ }
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+ $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
+
+ $file_row = 0;
+
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $file_row++;
+ fwrite($h3, $file_row . "\n");
+ if($file_row > 1){
+ try{
+
+ list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
+ $annotation_array = array();
+ $interactor_A_gene_name = self::getGeneName($V5);
+ $interactor_B_gene_name = self::getGeneName($V6);
+ $interactor_A_uniprot_id = self::getUniprotId($V1);
+ $interactor_B_uniprot_id = self::getUniprotId($V2);
+
+ if($interactor_A_gene_name && $interactor_B_gene_name){
+
+ $interactor_A_id = false;
+ $interactor_B_id = false;
+
+ $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_A_gene_name'";
+
+ $result = $connection->query($query);
+ $interactor_A_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_A_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_A_array)){
+ $interactor_A_id = $interactor_A_array[0];
+ }
+ $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_B_gene_name'";
+ $result = $connection->query($query);
+
+ $interactor_B_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_B_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_B_array)){
+ $interactor_B_id = $interactor_B_array[0];
+ }
+
+
+ if($interactor_A_id && $interactor_B_id){
+
+ $query = "SELECT * FROM `interaction` WHERE (`interactor_A` = '$interactor_A_id' AND `interactor_B` = '$interactor_B_id') OR (`interactor_A` = '$interactor_B_id' AND `interactor_B` = '$interactor_A_id')";
+ $result = $connection->query($query);
+ $interaction_array = array();
+
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interaction_array[] = $row['id'];
+ }
+ }
+ $interaction_id = false;
+ if(array_key_exists(0, $interaction_array)){
+ $interaction_id = $interaction_array[0];
+ }
+
+ if($interaction_id){
+ $query = "INSERT INTO `interaction_interaction_category`(`interaction_category_id`, `interaction_id`) VALUES ('4','$interaction_id')";
+ $connection->query($query);
+
+ $query = "INSERT INTO `interaction_dataset`(`dataset_id`, `interaction_id`) VALUES ('9','$interaction_id')";
+ $connection->query($query);
+
+ }
+ }
+ }
+ }catch(Exception $e) {
+ }
+ }
+ }
+ */ /*
+ $h3 = fopen('/home/mmee/Desktop/test_3.txt', 'w');
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT `annotation_json`, `identifier` FROM `annotation` GROUP BY (`annotation_json`, `identifier`) WHERE `id` > 1192784 ";
+ $result = $connection->query($query);
+
+ while($row = $result->fetch_assoc()) {
+
+ $annotation_json = $row['annotation_json'];
+
+ $id_array = array();
+ $query2 = "SELECT * FROM `annotation` WHERE `annotation_json` = '$annotation_json'";
+ fwrite($h3, $query2 . "\n");
+ $result2 = $connection->query($query2);
+ while($row2 = $result2->fetch_assoc()) {
+ $id_array[] = $row2['id'];
+ }
+ foreach($id_array as $key => $id) {
+ if($key === 0) continue;
+ $query2 = "DELETE FROM `annotation` WHERE `id` = '$id'";
+ $connection->query($query2);
+ }
+ }
+
+ TRUNCATE TABLE `annotation`;
+
+
+
+ /*
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $handle1 = fopen('/home/mmee/Desktop/huri_project/interaction_detection_methods_classification.csv', 'r');
+ $file_row1 = 0;
+ $int_detec_meth_array = array();
+ $h1 = fopen('/home/mmee/Desktop/test_1.txt', 'w');
+ fwrite($h1, 'START1' . "\n");
+ while ($file_data = fgetcsv($handle1, 0, ",")){
+ $file_row1++;
+ if($file_row1 > 1){
+ list ($mi_id, $name, $class) = $file_data;
+ $int_detec_meth_array[$mi_id] = $class;
+
+ }
+ }
+ fwrite($h1, 'START2' . "\n");
+ $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+ $file_row = 0;
+ $not_found = array();
+ $annotation_interaction_array = array();
+ $count = 0;
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $file_row++;
+
+ if($file_row > 1){
+ //fwrite($h2, $file_row . "\n");
+ try{
+
+ list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
+ $annotation_array = array();
+ $interactor_A_gene_name = self::getGeneName($V5);
+ $interactor_B_gene_name = self::getGeneName($V6);
+ $interactor_A_uniprot_id = self::getUniprotId($V1);
+ $interactor_B_uniprot_id = self::getUniprotId($V2);
+
+ if($interactor_A_gene_name && $interactor_B_gene_name){
+
+ $interactor_A_id = false;
+ $interactor_B_id = false;
+
+ $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_A_gene_name'";
+
+ $result = $connection->query($query);
+ $interactor_A_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_A_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_A_array)){
+ $interactor_A_id = $interactor_A_array[0];
+ }
+ $query = "SELECT * FROM `protein` WHERE `gene_name` = '$interactor_B_gene_name'";
+ $result = $connection->query($query);
+
+ $interactor_B_array = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactor_B_array[] = $row['id'];
+ }
+ }
+
+ if(array_key_exists(0, $interactor_B_array)){
+ $interactor_B_id = $interactor_B_array[0];
+ }
+
+
+ if($interactor_A_id && $interactor_B_id){
+
+ $query = "SELECT * FROM `interaction` WHERE (`interactor_A` = '$interactor_A_id' AND `interactor_B` = '$interactor_B_id') OR (`interactor_A` = '$interactor_B_id' AND `interactor_B` = '$interactor_A_id')";
+ $result = $connection->query($query);
+ $interaction_array = array();
+
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interaction_array[] = $row['id'];
+ }
+ }
+ $interaction_id = false;
+ if(array_key_exists(0, $interaction_array)){
+ $interaction_id = $interaction_array[0];
+ }
+
+ if($interaction_id){
+ $pmid_string = $V9;
+ $pmid_array = preg_split('/:/', $pmid_string);
+ $pmid = $pmid_array[1];
+
+ $method_string = $V7;
+ $method_array = preg_split('/:/', $method_string);
+
+ $method_string2 = $method_array[2];
+ $method_array2 = preg_split('/"/', $method_string2);
+ $method_id = $method_array2[0];
+
+ $method_array3 = preg_match('/.*\((.*)\).* /', $method_string);
+ $method_name = $method_array3[0];
+
+ $annotation_array['pmid'] = $pmid;
+ $annotation_array['experiment_type'] = $method_id;
+
+ $class = $int_detec_meth_array[$method_id];
+ if($class == 'B'){
+ $annotation_array['binary_type'] = 'binary';
+ }elseif($class == 'I'){
+ $annotation_array['binary_type'] = 'non_binary';
+ }elseif($class == 'N'){
+ $annotation_array['binary_type'] = 'na';
+ }
+ $annotation_array_json = json_encode($annotation_array);
+
+ $count++;
+ if($count == 1){
+ fwrite($h2, "INSERT INTO `annotation`(`id`, `annotation`, `identifier`, `annotation_type`, `type_name`) VALUES" . "\n");
+ fwrite($h2, "('','$annotation_array_json','$interaction_id','4','litbm_interaction')," . "\n");
+ }elseif($count < 300){
+ fwrite($h2, "('','$annotation_array_json','$interaction_id','4','litbm_interaction')," . "\n");
+ }elseif($count == 300){
+ fwrite($h2, "('','$annotation_array_json','$interaction_id','4','litbm_interaction');" . "\n");
+ $count = 0;
+ }
+ }
+ }
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+ /*
+
+ fwrite($h1, 'START3' . "\n");
+ $annotation_type = $this->getDoctrine()
+ ->getRepository(Annotation_Type::class)
+ ->find('4');
+ $count2 = 0;
+ foreach($annotation_interaction_array as $interaction_id => $annotation_array){
+ $count2++;
+ fwrite($h1, $count2 . "\n");
+ $interaction = self::getInteractionById($interaction_id);
+ foreach($annotation_array as $annotation_interaction){
+ $annotation_json = json_encode($annotation_interaction);
+ $annotation = new Annotation();
+ $annotation->setAnnotation($annotation_json);
+ $annotation->setAnnotationType($annotation_type);
+ $annotation->setIdentifier($interaction_id);
+ $annotation->setTypeName('litbm_interaction');
+ $interaction->addAnnotation($annotation);
+ $annotation->addInteraction($interaction);
+ $em = $this->getDoctrine()->getManager();
+ $em->getConnection()->getConfiguration()->setSQLLogger(null);
+ $em->persist($annotation);
+ $em->persist($interaction);
+ $em->flush();
+ }
+ }
+ */
+
+ /*
+ $this->container->get('profiler')->disable();
+ $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $query = "SELECT * FROM `interaction`";
+ $result = $connection->query($query);
+ $interaction_array = array();
+ while($row = $result->fetch_assoc()) {
+ $interactor_A = $row['interactor_A'];
+ $interactor_B = $row['interactor_B'];
+ $interaction_array[] = $interactor_A . '_' . $interactor_B;
+ }
+ $interaction_array2 = array();
+
+ $count = 0;
+ $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+ fwrite($handle3, $count . "\n");
+ if($count > 1){
+ try{
+ list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
+
+ $interactor_A_gene_name = self::getGeneName($V5);
+ $interactor_B_gene_name = self::getGeneName($V6);
+ $interactor_A_uniprot_id = self::getUniprotId($V1);
+ $interactor_B_uniprot_id = self::getUniprotId($V2);
+
+
+ if($interactor_A_gene_name && $interactor_B_gene_name){
+
+ $interactor_A = self::getProteinFromGeneName($interactor_A_gene_name);
+ $interactor_B = self::getProteinFromGeneName($interactor_B_gene_name);
+
+ if($interactor_A && $interactor_B){
+
+ $id_A = $interactor_A->getId();
+ $id_B = $interactor_B->getId();
+
+ $forward = $id_A . '_' . $id_B;
+ $reverse = $id_B . '_' . $id_A;
+
+ if(!in_array($forward, $interaction_array) && !in_array($reverse, $interaction_array)){
+
+ $query = "INSERT INTO `interaction`(`id`, `removed`, `interactor_A`, `interactor_B`) VALUES ('',0,$id_A,$id_B)";
+ $result = $connection->query($query);
+ $interaction_array[] = $forward;
+ $interaction_array2[] = $forward;
+
+ }elseif(!in_array($forward, $interaction_array2) && !in_array($reverse, $interaction_array2)){
+
+ $interaction_id = self::getInteraction($interactor_A, $interactor_B);
+ $query = "UPDATE `interaction` SET `removed`= 0 WHERE `id` = $interaction_id";
+ $result = $connection->query($query);
+ $interaction_array2[] = $forward;
+
+ }else{
+
+ }
+ }
+ }
+ }catch(Exception $e) {
+ }
+ }
+ }
+ */
+
+ /*
+ $this->container->get('profiler')->disable();
+ $handle = fopen('/home/mmee/Desktop/huri_project/LitBM-17.mitab', 'r');
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT `uniprot_id` FROM `protein` WHERE 1";
+ $result = $connection->query($query);
+ $uniprot_id_array = array();
+ while($row = $result->fetch_assoc()) {
+ $uniprot_id_array[] = $row['uniprot_id'];
+ }
+
+ $query = "SELECT `gene_name` FROM `protein` WHERE 1";
+ $result = $connection->query($query);
+ $gene_name_array = array();
+ while($row = $result->fetch_assoc()) {
+ $gene_name_array[] = $row['gene_name'];
+ }
+
+
+ scp -r transfer
+ sudo scp -r transfer/ openpip@192.168.81.209:/home/openpip/move
+
+
+ $count = 0;
+ $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+ fwrite($handle3, $count . "\n");
+ if($count > 1){
+ try{
+ list ($V1, $V2, $V3, $V4, $V5, $V6, $V7, $V8, $V9, $V10, $V11, $V12, $V13, $V14, $V15) = $file_data;
+
+ $interactor_A_gene_name = self::getGeneName($V5);
+ $interactor_B_gene_name = self::getGeneName($V6);
+ $interactor_A_uniprot_id = self::getUniprotId($V1);
+ $interactor_B_uniprot_id = self::getUniprotId($V2);
+
+ if(in_array($interactor_A_gene_name, $gene_name_array) == false && in_array($interactor_A_uniprot_id, $uniprot_id_array) == false ){
+ if($interactor_A_uniprot_id != $interactor_A_gene_name){
+ $protein = new Protein;
+ $protein->setGeneName($interactor_A_gene_name);
+ $interactor_A_uniprot_id = self::getUniprotId($V1);
+ $protein->setUniprotId($interactor_A_uniprot_id);
+ $doctrine_manager = $this->getDoctrine()->getManager();
+ $doctrine_manager->getConfiguration()->setSQLLogger(null);
+ $doctrine_manager->persist($protein);
+ $doctrine_manager->flush();
+ $gene_name_array[] = $interactor_A_gene_name;
+ $uniprot_id_array[] = $interactor_A_uniprot_id;
+ }
+ }
+
+ if(in_array($interactor_B_gene_name, $gene_name_array) == false && in_array($interactor_B_uniprot_id, $uniprot_id_array) == false ){
+ if($interactor_B_uniprot_id != $interactor_B_gene_name){
+ $protein = new Protein;
+ $protein->setGeneName($interactor_B_gene_name);
+ $protein->setUniprotId($interactor_B_uniprot_id);
+ $doctrine_manager = $this->getDoctrine()->getManager();
+ $doctrine_manager->getConfiguration()->setSQLLogger(null);
+ $doctrine_manager->persist($protein);
+ $doctrine_manager->flush();
+ $gene_name_array[] = $interactor_B_gene_name;
+ $uniprot_id_array[] = $interactor_B_uniprot_id;
+ }
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+ *//*
+
+ $em = $this->getDoctrine()->getManager();
+ $em->getConnection()->getConfiguration()->setSQLLogger(null);
+ $repository = $this->getDoctrine()->getRepository('AppBundle:Protein');
+
+ $interactions=$repository->findAll();
+
+ $protein_counts=array();
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT * FROM `interaction` WHERE `removed` = 0";
+ $result = $connection->query($query);
+
+
+ while($row = $result->fetch_assoc()){
+ $interactor_A = $row['interactor_A'];
+ $interactor_B = $row['interactor_B'];
+
+ if($row['removed'] == 0){
+ if($interactor_A == $interactor_B){
+ if(!array_key_exists($interactor_A, $protein_counts)){
+ $protein_counts[$interactor_A] = 1;
+ }else{
+ $protein_counts[$interactor_A] = $protein_counts[$interactor_A] + 1;
+ }
+ }else{
+ if(!array_key_exists($interactor_A, $protein_counts)){
+ $protein_counts[$interactor_A] = 1;
+ }else{
+ $protein_counts[$interactor_A] = $protein_counts[$interactor_A] + 1;
+ }
+ if(!array_key_exists($interactor_B, $protein_counts)){
+ $protein_counts[$interactor_B] = 1;
+ }else{
+ $protein_counts[$interactor_B] = $protein_counts[$interactor_B] + 1;
+ }
+ }
+ }
+ }
+ $h2 = fopen('/home/mmee/Desktop/test_2.sql', 'w');
+
+ foreach($protein_counts as $protein_id => $count){
+ $query = "UPDATE `protein` SET `number_of_interactions_in_database`= '$count' WHERE `id` = '$protein_id';";
+ fwrite($h2, $query . "\n");
+ //$connection->query($query);
+ }
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT * FROM `protein` GROUP BY `gene_name` HAVING COUNT(`gene_name`) > 1";
+ $result = $connection->query($query);
+ $count = 0;
+ $handle = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while($row = $result->fetch_assoc()) {
+
+ $original_protein_id = $row['id'];
+ $gene_name = $row['gene_name'];
+
+ $em = $this->getDoctrine()->getManager();
+ $em->getConnection()->getConfiguration()->setSQLLogger(null);
+ $query = $em->createQuery("SELECT p FROM AppBundle:Protein p WHERE p.gene_name = :gene_name");
+ $query->setParameter('gene_name', $gene_name);
+ $results = $query->getResult();
+
+ if(count($results == 2)){
+
+ $original_protein = $results[0];
+ $duplicate_protein = $results[1];
+ $duplicate_protein_id = $duplicate_protein->getId();
+
+ $em->remove($duplicate_protein);
+ $em->flush();
+
+
+ $duplicate_protein_ensembl_id = $duplicate_protein->getEnsemblId();
+
+ $original_protein->setEnsemblId($duplicate_protein_ensembl_id);
+ $em->persist($original_protein);
+ $em->flush();
+
+
+ $query = $em->createQuery("SELECT i FROM AppBundle:Interaction i WHERE i.interactor_A = :interactor_A OR i.interactor_B = :interactor_B");
+ $query->setParameter('interactor_A', $original_protein);
+ $query->setParameter('interactor_B', $original_protein);
+
+ $original_interactions = $query->getResult();
+ $original_interaction_array = array();
+
+ foreach($original_interactions as $original_interaction){
+
+ $int_A = $original_interaction->getInteractorA();
+ $int_B = $original_interaction->getInteractorB();
+
+ $int_A_id = $int_A->getId();
+ $int_B_id = $int_B->getId();
+ $original_interaction_array[] = $int_A_id . '_' . $int_B_id;
+
+ }
+ //fwrite($handle, json_encode($original_interaction_array));
+
+
+ $query = $em->createQuery("SELECT i FROM AppBundle:Interaction i WHERE i.interactor_A = :interactor_A OR i.interactor_B = :interactor_B");
+ $query->setParameter('interactor_A', $duplicate_protein);
+ $query->setParameter('interactor_B', $duplicate_protein);
+
+ $duplicate_interactions = $query->getResult();
+
+ foreach($duplicate_interactions as $duplicate_interaction){
+ $int_A = $duplicate_interaction->getInteractorA();
+ $int_B = $duplicate_interaction->getInteractorB();
+ $int_A_id = $int_A->getId();
+ $int_B_id = $int_B->getId();
+ $test_1 = '';
+ if($int_A_id == $duplicate_protein_id){
+ $test_1 = $original_protein_id . '_' . $int_B_id;
+ }
+ $test_2 = '';
+ if($int_B_id == $duplicate_protein_id){
+ $test_2 = $int_A_id . '_' . $original_protein_id;
+ }
+ if(in_array($test_1, $original_interaction_array) || in_array($test_2, $original_interaction_array)){
+ $em->remove($duplicate_interaction);
+ $em->flush();
+ }else{
+ if($int_A_id == $duplicate_protein_id){
+ $duplicate_interaction->setInteractorA($original_protein);
+ $em->persist($duplicate_interaction);
+ $em->flush();
+
+ }elseif($int_B_id == $duplicate_protein_id){
+ $duplicate_interaction->setInteractorB($original_protein);
+ $em->persist($duplicate_interaction);
+ $em->flush();
+ }
+ }
+ }
+
+
+ }
+ }
+
+ */
+ /*
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query2 = "SELECT * FROM `protein` WHERE id > 13923";
+ $result2 = $connection->query($query2);
+ $count = 0;
+ $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while($row = $result2->fetch_assoc()) {
+ $count++;
+ fwrite($handle3, $count . "\n");
+ $protein_id = $row['id'];
+ $uniprot_id = $row['uniprot_id'];
+ $gene_name_current = $row['gene_name'];
+ $sequence = null;
+ $description = null;
+ $entrez_id = null;
+ $gene_name = null;
+ $protein_name = null;
+ $ensembl_id = null;
+
+ $url = "http://www.uniprot.org/uniprot/$uniprot_id.xml";
+ try{
+ $str= @file_get_contents($url);
+ if($str != FALSE){
+ $str=str_replace('xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://uniprot.org/uniprot http://www.uniprot.org/support/docs/uniprot.xsd"', "", $str);
+ $crawler = new Crawler($str);
+ #Sequence
+ try{
+ $sequence_xml = $crawler->filter('uniprot > entry > sequence');
+ if($sequence_xml->count()){$sequence = $sequence_xml->text();}
+ }catch(Exception $e) {}
+
+ #Gene Name
+ try{
+ $gene_name_xml = $crawler->filter('uniprot > entry > gene > name');
+ if($gene_name_xml->count()){$gene_name = $gene_name_xml->text();}
+ }catch(Exception $e) {}
+
+ #Protein Name
+ try{
+ $protein_name_xml = $crawler->filter('uniprot > entry > protein > recommendedName > fullName');
+ if($protein_name_xml->count()){$protein_name = $protein_name_xml->text();}
+ }catch(Exception $e) {}
+
+ #Description
+ try{
+ $description_xml = $crawler->filter('uniprot > entry > comment[type="function"] > text');
+ if($description_xml->count()){$description = $description_xml->text();}
+ }catch(Exception $e) {}
+
+ #entrez_gene_id
+ try{
+ $entrez_gene_xml = $crawler->filter('uniprot > entry > dbReference[type="GeneID"]');
+ if($entrez_gene_xml->count()){$entrez_id = $entrez_gene_xml->attr("id");}
+ }catch(Exception $e) {}
+
+ #ensembl_gene_id
+ try{
+ $ensembl_xml = $crawler->filter('uniprot > entry > dbReference[type="Ensembl"] > property[type="gene ID"]');
+ if($ensembl_xml->count()){$ensembl_id = $ensembl_xml->attr("value");}
+ }catch(Exception $e) {}
+
+
+
+ $sql = 'UPDATE `protein` SET ';
+ $update_array = array();
+
+ if($gene_name != null && $gene_name_current == null){
+ $update_array[] = "`gene_name`= '$gene_name'";
+ }
+
+ if($protein_name != null){
+ $update_array[] = "`protein_name`= '$protein_name'";
+ }
+
+ if($entrez_id != null){
+ $update_array[] = "`entrez_id`= '$entrez_id'";
+ }
+
+ if($description != null){
+ $description = $connection->real_escape_string($description);
+ $update_array[] = "`description`= '$description'";
+ }
+
+ if($sequence != null){
+ $sequence = $connection->real_escape_string($sequence);
+ $update_array[] = "`sequence`= '$sequence'";
+ }
+
+ if($ensembl_id != null){
+ $ensembl_id = $connection->real_escape_string($ensembl_id);
+ $update_array[] = "`ensembl_id`= '$ensembl_id'";
+ }
+
+ $updates = join(',', $update_array);
+ $sql = $sql . $updates . " WHERE `id`= '$protein_id'";
+ $connection->query($sql);
+
+ $sequence = null;
+ $description = null;
+ $entrez_id = null;
+ $gene_name = null;
+ $protein_name = null;
+ $ensembl_id = null;
+ }
+ }catch(Exception $e) {
+ $sequence = null;
+ $description = null;
+ $entrez_id = null;
+ $gene_name = null;
+ $protein_name = null;
+ }
+ }
+ */
+
+ /*
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query2 = "SELECT * FROM `protein` WHERE `id` > 13744";
+ $result2 = $connection->query($query2);
+ $count = 0;
+ //$handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while($row = $result2->fetch_assoc()) {
+ $count++;
+
+ $protein_id = $row['id'];
+ $ensembl_id = $row['ensembl_id'];
+ $uniprot_id = $row['uniprot_id'];
+ $gene_name = $row['gene_name'];
+
+
+
+ if($ensembl_id != null && $ensembl_id != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$ensembl_id'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ if($uniprot_id != null && $uniprot_id != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$uniprot_id'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ if($gene_name != null && $gene_name != ''){
+ $query3 = "SELECT * FROM `identifier` WHERE `identifier` = '$gene_name'";
+ $result3 = $connection->query($query3);
+ while($row2 = $result3->fetch_assoc()) {
+ $identifier_id = $row2['id'];
+ $query4 = "INSERT INTO `protein_identifier`(`identifier_id`, `protein_id`) VALUES ('$identifier_id', '$protein_id')";
+ $connection->query($query4);
+
+ }
+ }
+
+ }
+ */
+
+ /*
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query2 = "SELECT * FROM `protein` WHERE `id` > 13744";
+ $result2 = $connection->query($query2);
+ $count = 0;
+ //$handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+ while($row = $result2->fetch_assoc()) {
+ $count++;
+
+ $id = $row['id'];
+ $ensembl_id = $row['ensembl_id'];
+ $uniprot_id = $row['uniprot_id'];
+ $gene_name = $row['gene_name'];
+
+
+
+ if($ensembl_id != null && $ensembl_id != ''){
+ $query3 = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('','$ensembl_id','ensembl')";
+ $connection->query($query3);
+ }
+
+ if($uniprot_id != null && $uniprot_id != ''){
+ $query4 = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('','$uniprot_id','uniprotkb')";
+ $connection->query($query4);
+ }
+
+ if($gene_name != null && $gene_name != ''){
+ $query5 = "INSERT INTO `identifier`(`id`, `identifier`, `naming_convention`) VALUES ('','$gene_name','gene_name')";
+ $connection->query($query5);
+ }
+
+ }
+
+ */
+ /*
+ $this->container->get('profiler')->disable();
+ $handle = fopen('/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $query = "SELECT * FROM `interaction` WHERE `removed` = 0";
+ $result = $connection->query($query);
+ $interaction_array = array();
+ while($row = $result->fetch_assoc()) {
+ $interactor_A = $row['interactor_A'];
+ $interactor_B = $row['interactor_B'];
+ $interaction_array[] = $interactor_A . '_' . $interactor_B;
+ }
+ //$interaction_array2 = array();
+ $count = 0;
+ $handle2 = fopen('/home/mmee/Desktop/test.txt', 'w');
+ $handle3 = fopen('/home/mmee/Desktop/test2.txt', 'w');
+
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+ fwrite($handle3, $count . "\n");
+ if($count > 1){
+ try{
+ list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
+ $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
+ $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
+ $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
+ $xref_interactor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
+ $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
+ $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
+ $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
+
+ $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
+ $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
+
+ if($interactor_A_ensembl_id && $interactor_B_ensembl_id){
+
+ $interactor_A = self::getProteinFromEnsemblID($interactor_A_ensembl_id);
+ $interactor_B = self::getProteinFromEnsemblID($interactor_B_ensembl_id);
+
+ if($interactor_A && $interactor_B){
+
+
+ $id_A = $interactor_A->getId();
+ $id_B = $interactor_B->getId();
+
+ $forward = $id_A . '_' . $id_B;
+ $reverse = $id_B . '_' . $id_A;
+
+ if(!in_array($forward, $interaction_array) && !in_array($reverse, $interaction_array)){
+
+ $interaction_id = self::getInteraction($interactor_A, $interactor_B);
+ $query = "UPDATE `interaction` SET `removed`= 0 WHERE `id` = $interaction_id";
+ $result = $connection->query($query);
+ $interaction_array[] = $forward;
+
+ }
+
+ /*
+ $id_A = $interactor_A->getId();
+ $id_B = $interactor_B->getId();
+
+ $forward = $id_A . '_' . $id_B;
+ $reverse = $id_B . '_' . $id_A;
+
+ if(!in_array($forward, $interaction_array) && !in_array($reverse, $interaction_array)){
+
+ $score=null;
+ if($confidence_value != '-'){
+ $array = explode(": ",$confidence_value);
+ $score = $array[1];
+ }
+ $query = "INSERT INTO `interaction`(`id`, `score`, `removed`, `interactor_A`, `interactor_B`) VALUES ('',$score,0,$id_A,$id_B)";
+ $result = $connection->query($query);
+ $interaction_array[] = $forward;
+ $interaction_array2[] = $forward;
+
+ }elseif(!in_array($forward, $interaction_array2) && !in_array($reverse, $interaction_array2)){
+
+ $interaction_id = self::getInteraction($interactor_A, $interactor_B);
+ $query = "UPDATE `interaction` SET `removed`= 0 WHERE `id` = $interaction_id";
+ $result = $connection->query($query);
+ $interaction_array2[] = $forward;
+
+ }else{
+
+ }
+
+ }else{
+
+ fwrite($handle2, $count . "\n");
+ }
+ }else{
+
+ fwrite($handle2, $count . "\n");
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+ */
+
+ /*
+ $handle = fopen('/home/mmee/Desktop/huri_project/uniprot_reviewed.tab', 'r');
+ $handle2 = fopen('/home/mmee/Desktop/test.txt', 'w');
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $count = 0;
+ fwrite($handle2, 'START' . "\n");
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+
+ if($count > 1){
+
+ try{
+ list ($a, $b, $c, $d, $e, $f, $g, $h, $i, $j) = $file_data;
+ $array = explode(",",$b);
+ if(count($array) > 1){
+ foreach($array as $id){
+ try{
+ $query = "UPDATE `protein` SET `protein_name`= \"$g\",`uniprot_id`= \"$d\" WHERE `ensembl_id` = \"$id\"";
+ fwrite($handle2, $query . "\n");
+ $result = $connection->query($query);
+ }catch(Exception $e) {
+ }
+ }
+ }
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+ $this->container->get('profiler')->disable();
+ $handle = fopen('tab/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $query = "SELECT `ensembl_id` FROM `protein` WHERE 1";
+ $result = $connection->query($query);
+ $ensembl_id_array = array();
+ while($row = $result->fetch_assoc()) {
+ $ensembl_id_array[] = $row['ensembl_id'];
+ }
+
+ $count = 0;
+
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+
+ if($count > 1){
+ try{
+ list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
+ $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
+ $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
+ $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
+ $xref_interactor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
+ $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
+ $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
+ $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
+
+ $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
+ $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
+
+ if(in_array($interactor_A_ensembl_id, $ensembl_id_array) == false){
+ $protein = new Protein;
+ $protein->setEnsemblId($interactor_A_ensembl_id);
+ $doctrine_manager = $this->getDoctrine()->getManager();
+ $doctrine_manager->getConfiguration()->setSQLLogger(null);
+ $doctrine_manager->persist($protein);
+ $doctrine_manager->flush();
+ $ensembl_id_array[] = $interactor_A_ensembl_id;
+ }
+
+ if(in_array($interactor_B_ensembl_id, $ensembl_id_array) == false){
+ $protein = new Protein;
+ $protein->setEnsemblId($interactor_B_ensembl_id);
+ $doctrine_manager = $this->getDoctrine()->getManager();
+ $doctrine_manager->getConfiguration()->setSQLLogger(null);
+ $doctrine_manager->persist($protein);
+ $doctrine_manager->flush();
+ $ensembl_id_array[] = $interactor_B_ensembl_id;
+ }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+
+
+
+
+
+
+ SELECT * FROM `protein`
+ GROUP BY `gene_name`
+ HAVING COUNT(`gene_name`) > 1
+
+ SELECT * FROM `protein`
+ GROUP BY `ensembl_id`
+ HAVING COUNT(`ensembl_id`) > 1
+
+ */
+ /*
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ $this->container->get('profiler')->disable();
+ $handle = fopen('/home/mmee/Desktop/huri_project/PSI_MI_Huri_20180629_full.txt', 'r');
+ $h = fopen('/home/mmee/Desktop/test_1.txt', 'w');
+ $h2 = fopen('/home/mmee/Desktop/test_2.txt', 'w');
+
+ $dataset_array = array("Yang et al.(2016)" => "Yang-16", "unpublished space III" => "HI-III", "unpublished GSM test space" => "unpublished GSM test space",
+ "Rolland et al.(2014)" => "HI-II-14", "unpublished pilot screen" => "unpublished pilot screen", "Rual et al.(2005)" => "HI-I-05",
+ "Yu et al.(2011)" => "Yu-11", "unpublished GS test space" => "unpublished GS test space", "Venkatesan et al.(2009)" => "Venkatesan-09");
+
+ $repository = $this->getDoctrine()->getRepository('AppBundle:Annotation_Type');
+ $annotation_type=$repository->find('5');
+ $count = 0;
+
+ while ($file_data = fgetcsv($handle, 0, "\t")){
+ $count++;
+ fwrite($h, $count . "\n");
+ if($count > 244945){
+ try{
+ list ($interactor_A_id, $interactor_B_id, $alt_interactor_A_id, $alt_interactor_B_id, $interactor_A_alias, $interactor_B_alias, $interaction_detection_method,
+ $publication_first_author, $publication_identifier, $taxid_interactor_A, $taxid_interactor_B, $interaction_type, $source_database,
+ $interaction_identifier, $confidence_value, $expansion_method, $biological_role_interactor_A, $biological_role_interactor_B,
+ $experimental_role_interactor_A, $experimental_role_interactor_B, $type_interactor_A, $type_interactor_B, $xref_interactor_A,
+ $xref_interactor_B, $interaction_xref, $annotation_interactor_A, $annotation_interactor_B, $interaction_annotation, $host_organism,
+ $interaction_parameter, $creation_date, $update_date, $checksum_interactor_A, $checksum_interactor_B, $interaction_checksum,
+ $negative, $feature_interactor_A, $feature_interactor_B, $stoichiometry_interactor_A, $stoichiometry_interactor_B,
+ $identification_method_paddrticipant_A, $identification_method_participant_B) = $file_data;
+
+ if($annotation_interactor_A != '-' && $annotation_interactor_B != '-'){
+
+ $interactor_A_ensembl_id = self::getEnsemblID($alt_interactor_A_id);
+ $interactor_B_ensembl_id = self::getEnsemblID($alt_interactor_B_id);
+
+ $interactor_A = self::getProteinFromEnsemblID($interactor_A_ensembl_id);
+ $interactor_B = self::getProteinFromEnsemblID($interactor_B_ensembl_id);
+ if($interactor_A && $interactor_B){
+ $interaction_id = self::getInteraction($interactor_A, $interactor_B);
+ $interaction = self::getInteractionById($interaction_id);
+
+ if($interaction){
+ $annotations = $interaction->getAnnotations();
+
+ $interactor_A_gene_name = $interactor_A->getGeneName();
+ $interactor_B_gene_name = $interactor_B->getGeneName();
+
+ $orf_A_id = self::getOrfId($interactor_A_alias);
+ $orf_B_id = self::getOrfId($interactor_B_alias);
+ $assay_version = self::getAssayVersion($annotation_interactor_A, $annotation_interactor_B);
+ $num_screens = self::getNumberOfScreens($interaction_annotation);
+
+ $experiment_annotation = array('dataset' => $dataset_array[$publication_first_author], 'dna_binding_domain' => $interactor_A_gene_name, 'activation_binding_domain' => $interactor_B_gene_name, 'orf_A_id' => $orf_A_id, 'orf_B_id' => $orf_B_id, 'assay_version' => $assay_version, 'num_screens' => $num_screens);
+ $experiment_annotation_json = json_encode($experiment_annotation);
+
+ $check = true;
+ foreach($annotations as $anno){
+ $annotation_json = $anno->getAnnotation();
+ if($annotation_json == $experiment_annotation_json){
+ $check = false;
+ }
+ }
+ if($check){
+
+ $query = " INSERT INTO `annotation`(`id`, `annotation`, `identifier`, `annotation_type`, `type_name`) VALUES ('','$experiment_annotation_json','$interaction_id','5','experiment')";
+ $result = $connection->query($query);
+
+ /*
+ $annotation = new Annotation();
+ $annotation->setAnnotation($experiment_annotation_json);
+ $annotation->setIdentifier($interaction_id);
+ $annotation->setAnnotationType($annotation_type);
+ $annotation->setTypeName('experiment');
+ $interaction->addAnnotation($annotation);
+ $annotation->addInteraction($interaction);
+ $em = $this->getDoctrine()->getManager();
+ $em->getConnection()->getConfiguration()->setSQLLogger(null);
+ $em->persist($annotation);
+ $em->persist($interaction);
+ $em->flush();
+
+ }
+ }
+ }
+ }
+
+ //$assay_version = self::getAssayVersion($annotation_interactor_A, $annotation_interactor_B);
+ //$assay_version_array["$assay_version"] = $assay_version_array["$assay_version"] +1;
+
+ // if($assay_version == null){
+ // fwrite($h2, $annotation_interactor_A . $annotation_interactor_B . "\n");
+ // }
+
+ }catch(Exception $e) {
+ }
+ }
+ }
+ */
+
}
public function getrandomprotein()
@@ -1537,6 +1542,10 @@ public function getrandomprotein()
}
$List = implode(';', $protein_array);
return $List;
+ var_dump($List);
+ die();
+
+
}
@@ -1828,3 +1837,7 @@ public function getIdentifier($identifier){
}
?>
+
+
+
+
diff --git a/src/AppBundle/Controller/SearchController.php b/src/AppBundle/Controller/SearchController.php
index 9c76c5f0..27af2ef7 100644
--- a/src/AppBundle/Controller/SearchController.php
+++ b/src/AppBundle/Controller/SearchController.php
@@ -26,6 +26,8 @@
use AppBundle\Entity\Interaction_Category;
use AppBundle\Entity\Interaction_Network;
use AppBundle\Entity\Annotation_Type;
+use Symfony\Component\Finder\Finder;
+
/**
* Search controller.
@@ -43,6 +45,11 @@ class SearchController extends Controller
public function searchAction($search_term, Request $request)
{
+ // SELECT count(*) FROM `interaction_organism` WHERE organism_id = 3
+ $organismForm = self::getOrganismForm();
+ $organismForm->handleRequest($request);
+ self::OrganismFormHandler($organismForm);
+
$interaction_categories_array = self::getInteractionCategories();
$query_parameters = '';
$found_protein_array = '';
@@ -139,12 +146,183 @@ public function searchAction($search_term, Request $request)
'query_parameters' => $query_parameters,
'login_status' => $login_status,
'admin_status' => $admin_status,
+ 'organism_form'=> $organismForm->createView(),
'page' => 'search'
));
}
+
+ public function getOrganismForm()
+ {
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+
+ // $interactor_id_string = join(',', $interactor_array);
+ // $interactor_id_string = "'" . str_replace(",", "','", $interactor_id_string) . "'";
+
+ $query = "SELECT id, common_name FROM organism;";
+
+ $result = $connection->query($query);
+ mysqli_close($connection);
+ $organism_arrays = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $organism_arrays[] = $row;
+ }
+ }
+
+ $organism_array = array();
+ foreach ($organism_arrays as $organism) {
+
+ $id = $organism['id'];
+ $common_name = $organism['common_name'];
+ $name=$id.". "."$common_name";
+ $organism_array[] = $name;
+ }
+
+ // if($interaction_array){
+ // return $interaction_array;
+ // }else{
+ // return false;
+ // }
+ // $encoded = json_encode($organism_array, JSON_UNESCAPED_UNICODE);
+ // var_dump($encoded);die;
+
+ // dump($files_array);die;
+
+
+ $defaultData = array('message' => 'Type your message here');
+ $organismForm = $this->createFormBuilder($defaultData)
+ ->add('organism_select', ChoiceType::class, array(
+ 'choices' => $organism_array
+ ))->getForm();
+
+ return $organismForm;
+ }
+
+ public function OrganismFormHandler($organismform)
+ {
+ if ($organismform->isSubmitted())
+ {
+
+ // $this->get('session')->save();
+ // self::handleData3($dform,$request);
+ $file_to_insert = $organismform->get('files_to_insert')->getData();
+ $temp_arr=explode("::", $file_to_insert);
+ $file=$temp_arr[1];
+ $folder=$temp_arr[0];
+
+
+ return $this->redirectToRoute('insert_data', array('file' => $file, 'folder'=> $folder));
+
+ $this->addFlash(
+ 'notice',
+ 'Your changes were saved!'
+ );
+ }
+
+ }
+
+ /**
+ * Info organism
+ *
+ * @Route("/info_organism/{id}", name="info_organism", options={"expose": true})
+ * @Method({"GET", "POST"})
+ */
+ public function getOrganismInfo($id)
+ {
+
+ $organism_array = array();
+
+
+ $functions = $this->get('app.functions');
+ $connection = $functions->mysql_connect();
+ $query = "SELECT * FROM organism WHERE id = $id;";
+ $result = $connection->query($query);
+ $organism_arrays = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $organism_arrays[] = $row;
+ }
+ }
+
+ $organism_array['id'] = $organism_arrays[0]['id'];
+ $organism_array['common_name'] = $organism_arrays[0]['common_name'];
+ $organism_array['scientific_name'] = $organism_arrays[0]['scientific_name'];
+ $organism_array['taxid_id'] = $organism_arrays[0]['taxid_id'];
+ $organism_array['description'] = $organism_arrays[0]['description'];
+ $organism_array['class'] = $organism_arrays[0]['class'];
+
+ $query = "SELECT count(*) FROM interaction_organism WHERE organism_id = $id;";
+ $result = $connection->query($query);
+
+ $organism_array['interaction_count'] = $result->fetch_assoc()['count(*)'];
+
+
+ $interactions = array();
+ $query = "SELECT interaction_id FROM interaction_organism WHERE organism_id = $id;";
+ $result = $connection->query($query);
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactions[] = $row['interaction_id'];
+ }
+ }
+ // remove_duplicate($interactions);
+ $interactions = array_unique($interactions);
+ $interactions_string = join(',', $interactions);
+ $interactions_string = "'" . str_replace(",", "','", $interactions_string) . "'";
+ $query = "SELECT interactor_A, interactor_B FROM interaction WHERE id IN ($interactions_string) ;";
+ $result = $connection->query($query);
+ $interactors = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $interactors[] = $row['interactor_A'];
+ $interactors[] = $row['interactor_B'];
+ }
+ }
+ $interactors = array_unique($interactors);
+ $interactors_count = count($interactors);
+
+ $organism_array['protein_count'] = $interactors_count;
+
+ $interactors_string = join(',', $interactors);
+ $interactors_string = "'" . str_replace(",", "','", $interactors_string) . "'";
+ $query = "SELECT gene_name FROM protein WHERE id IN ($interactors_string) ;";
+ $result = $connection->query($query);
+
+ $gene_names = array();
+ if($result){
+ while($row = $result->fetch_assoc()) {
+ $gene_names[] = $row['gene_name'];
+ }
+ }
+ $gene_names = array_unique($gene_names);
+
+ $organism_array['gene_names'] = $gene_names;
+ // var_dump($interactors);
+ mysqli_close($connection);
+
+ $res = "
Organism id: ".$organism_array['id']."
";
+ $res .= "
Name: ".$organism_array['common_name']."
";
+ $res .= "
Scientific name: ".$organism_array['scientific_name']."
";
+ $res .= "
Taxid id: ".$organism_array['taxid_id']."
";
+ $res .= "
Description: ".$organism_array['description']."
";
+ $res .= "
Class: ".$organism_array['class']."
";
+ $res .= "
Interaction count: ".$organism_array['interaction_count']."
";
+ $res .= "
Protein count: ".$organism_array['protein_count']."
";
+ $res .= "
Gene names: ".join(', ', $organism_array['gene_names'])."
";
+
+
+
+ $encoded = json_encode($organism_array, JSON_UNESCAPED_UNICODE);
+ return new Response($res);
+ // return new Response($encoded);
+ }
+
/**
* Search Results
*
@@ -157,6 +335,8 @@ public function searchResultsInteractionsAction(Request $request)
$search_term = $request->get('search_term_parameter');
$filter_parameter = $request->get('filter_parameter');
$search_term_array = $request->get('search_term_array');
+ $search_organism = $request->get('search_organism');
+ // print($search_organism);
@@ -180,6 +360,7 @@ public function searchResultsInteractionsAction(Request $request)
$query_parameters->setSearchTermParameter($search_term);
$query_parameters->setFilterParameter($filter_parameter);
$query_parameters->setSearchTermArray($search_term_array);
+ $query_parameters->setSearchOrganism($search_organism);
if($query_interactor == 'interactor'){
$query_parameters->setFilterParameter("query_query");
@@ -268,17 +449,19 @@ public function getInteractionData($query_parameters){
$filter_parameter = $query_parameters->getFilterParameter();
$search_term_array = $query_parameters->getSearchTermArray();
+ $search_organism = $query_parameters->getSearchOrganism();
$node_array = array();
$edge_array = array();
-
+ // getting protein name from gene name
$query_array = self::getProteinQueryArray($search_term_array);
$query_protein_array = $query_array[0];
$query_protein_id_array = $query_array[1];
- $interactor_array = self::getInteractorArray($query_protein_id_array, $filter_parameter);
- $interaction_array = self::getInteractionArray($interactor_array, $query_protein_array, $filter_parameter);
+ $interactor_array = self::getInteractorArray($query_protein_id_array, $filter_parameter, $search_organism);
+ $interaction_array = self::getInteractionArray($interactor_array, $query_protein_array, $filter_parameter,$search_organism);
+ // var_dump($interaction_array);
$node_array = self::interactorNodeHandeler($interactor_array, $query_protein_array);
@@ -352,14 +535,14 @@ public function getProteinQueryArray($search_term_array){
return array($query_protein_array, $query_protein_id_array, $found_proteins_string, $not_found_proteins_string);
}
- public function getInteractorArray($query_protein_id_array, $filter_parameter){
+ public function getInteractorArray($query_protein_id_array, $filter_parameter, $search_organism){
$interactor_array = array();
$functions = $this->get('app.functions');
if($filter_parameter == 'None' || $filter_parameter == 'query_interactor'){
- $interactions = self::getInteractionsForList($query_protein_id_array);
-
+ $interactions = self::getInteractionsForList($query_protein_id_array, $search_organism);
+ // var_dump($interactions);
if($interactions){
foreach($interactions as $interaction){
$interactor_array[] = $interaction['interactor_A'];
@@ -377,21 +560,21 @@ public function getInteractorArray($query_protein_id_array, $filter_parameter){
}
- public function getInteractionArray($interactor_array, $query_protein_array, $filter_parameter){
+ public function getInteractionArray($interactor_array, $query_protein_array, $filter_parameter, $search_organism){
$interaction_array = false;
if($filter_parameter == 'query_interactor'){
- $interaction_array = self::getQueryInteractorInteractionsAmongList($query_protein_array, $interactor_array);
+ $interaction_array = self::getQueryInteractorInteractionsAmongList($query_protein_array, $interactor_array, $search_organism);
}else{
- $interaction_array = self::getInteractionsAmongList($interactor_array);
+ $interaction_array = self::getInteractionsAmongList($interactor_array,$search_organism);
}
return $interaction_array;
}
- public function getInteractionsAmongList($interactor_array){
+ public function getInteractionsAmongList($interactor_array,$search_organism){
$functions = $this->get('app.functions');
$connection = $functions->mysql_connect();
@@ -399,8 +582,8 @@ public function getInteractionsAmongList($interactor_array){
$interactor_id_string = join(',', $interactor_array);
$interactor_id_string = "'" . str_replace(",", "','", $interactor_id_string) . "'";
- $query = "SELECT * FROM `interaction` WHERE `removed` = 0 AND (interactor_A IN ($interactor_id_string) AND interactor_B IN ($interactor_id_string))";
-
+ $query = "SELECT interaction.id, interaction.score, interaction.removed, interaction.binding_start, interaction.binding_end, interaction.interactor_A, interaction.interactor_B FROM `interaction` inner join interaction_organism on interaction.id = interaction_organism.interaction_id WHERE interaction.removed = 0 AND interaction_organism.organism_id=$search_organism AND ((interaction.interactor_A IN ($interactor_id_string) AND interaction.interactor_B IN ($interactor_id_string)))";
+ // var_dump($query);
$result = $connection->query($query);
mysqli_close($connection);
$interaction_array = array();
@@ -417,7 +600,7 @@ public function getInteractionsAmongList($interactor_array){
}
}
- public function getQueryInteractorInteractionsAmongList($query_protein_array, $interactor_array){
+ public function getQueryInteractorInteractionsAmongList($query_protein_array, $interactor_array,$search_organism){
$functions = $this->get('app.functions');
$connection = $functions->mysql_connect();
@@ -430,8 +613,9 @@ public function getQueryInteractorInteractionsAmongList($query_protein_array, $i
$query_protein_id_string = join(',', $query_protein_id_array);
$query_protein_id_string = "'" . str_replace(",", "','", $query_protein_id_string) . "'";
- $query = "SELECT * FROM `interaction` WHERE removed = 0 AND (`interactor_A` IN ($interactor_id_string) AND `interactor_B` IN ($query_protein_id_string)) OR (`interactor_A` IN ($query_protein_id_string) AND `interactor_B` IN ($interactor_id_string))";
-
+ $query = "SELECT interaction.id, interaction.score, interaction.removed, interaction.binding_start, interaction.binding_end, interaction.interactor_A, interaction.interactor_B FROM interaction inner join interaction_organism on interaction.id = interaction_organism.interaction_id WHERE interaction.removed = 0 AND interaction_organism.organism_id=$search_organism AND ((`interaction.interactor_A` IN ($interactor_id_string) AND `interaction.interactor_B` IN ($query_protein_id_string)) OR (`interaction.interactor_A` IN ($query_protein_id_string) AND `interaction.interactor_B` IN ($interactor_id_string)))";
+ // var_dump($query);
+ // print($query);
$result = $connection->query($query);
mysqli_close($connection);
@@ -449,7 +633,7 @@ public function getQueryInteractorInteractionsAmongList($query_protein_array, $i
}
}
- public function getInteractionsForList($interactor_array){
+ public function getInteractionsForList($interactor_array, $search_organism){
$functions = $this->get('app.functions');
$connection = $functions->mysql_connect();
@@ -458,6 +642,10 @@ public function getInteractionsForList($interactor_array){
$interactor_id_string = "'" . str_replace(",", "','", $interactor_id_string) . "'";
$query = "SELECT * FROM `interaction` WHERE removed = 0 AND (`interactor_A` IN ($interactor_id_string)) OR (`interactor_B` IN ($interactor_id_string))";
+
+ $query="SELECT interaction.id, interaction.score, interaction.removed, interaction.binding_start, interaction.binding_end, interaction.interactor_A, interaction.interactor_B FROM interaction inner join interaction_organism on interaction.id = interaction_organism.interaction_id WHERE interaction.removed = 0 AND interaction_organism.organism_id=$search_organism AND ((interaction.interactor_A IN ($interactor_id_string)) OR (interaction.interactor_B IN ($interactor_id_string)))";
+ // var_dump($query);
+
$result = $connection->query($query);
mysqli_close($connection);
@@ -467,6 +655,8 @@ public function getInteractionsForList($interactor_array){
$interaction_array[] = $row;
}
}
+ // var_dump($interaction_array);
+
if($interaction_array){
return $interaction_array;
diff --git a/src/AppBundle/Entity/Interaction_Organism.php b/src/AppBundle/Entity/Interaction_Organism.php
new file mode 100644
index 00000000..3203c5f2
--- /dev/null
+++ b/src/AppBundle/Entity/Interaction_Organism.php
@@ -0,0 +1,106 @@
+domains = new \Doctrine\Common\Collections\ArrayCollection();
+ $this->proteins = new \Doctrine\Common\Collections\ArrayCollection();
+ }
+
+ /**
+ * @ORM\Column(type="string", length=100, nullable=true)
+ */
+ protected $organism_id;
+
+ /**
+ * @ORM\Column(type="string", length=100, nullable=true)
+ */
+ protected $interaction_id;
+
+ /**
+ * Get organism_id
+ *
+ * @return integer
+ */
+ public function getOrganismId()
+ {
+ return $this->organism_id;
+ }
+
+ /**
+ * Get interaction_id
+ * @return integer
+ */
+ public function getInteractionId()
+ {
+ return $this->interaction_id;
+ }
+
+ /**
+ * Set interactionId
+ * @param string $interactionId
+ * @return Interaction_Organism
+ */
+ public function setInteractionId($interactionId)
+ {
+ $this->interaction_id = $interactionId;
+ return $this;
+ }
+
+ /**
+ * Set organism_id
+ *
+ * @param string $organismId
+ *
+ * @return Interaction_Organism
+ */
+ public function setOrganismId($organismId)
+ {
+ $this->organism_id = $organismId;
+
+ return $this;
+ }
+
+ /**
+ * Get id
+ *
+ * @return integer
+ */
+ public function getId()
+ {
+ return $this->id;
+ }
+
+ /**
+ * Set id
+ *
+ * @param integer $id
+ *
+ * @return Interaction_Organism
+ */
+ public function setId($id)
+ {
+ $this->id = $id;
+
+ return $this;
+ }
+
+
+}
diff --git a/src/AppBundle/Utils/QueryParameters.php b/src/AppBundle/Utils/QueryParameters.php
index f14d4325..c7a863f9 100755
--- a/src/AppBundle/Utils/QueryParameters.php
+++ b/src/AppBundle/Utils/QueryParameters.php
@@ -8,6 +8,8 @@ class QueryParameters
protected $search_term_parameter;
protected $search_term_summary;
+
+ protected $search_organism;
protected $category_summary;
@@ -41,6 +43,15 @@ class QueryParameters
protected $annotation_parameter_array;
protected $annotation_parameter_summary;
+
+
+ public function getSearchOrganism() {
+ return $this->search_organism;
+ }
+
+ public function setSearchOrganism($search_organism) {
+ $this->search_organism = $search_organism;
+ }
public function getFilterParameter() {
return $this->filter_parameter;
diff --git a/start.sh b/start.sh
new file mode 100755
index 00000000..a744723c
--- /dev/null
+++ b/start.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+pwd
+# cp -r ./Docker\ OpenPIP\ package/* ./../
+# chown -R www-data:www-data app/cache
+# chown -R www-data:www-data app/logs
+# sudo chmod -R 777 web/uploads
+# cd ..
+# docker-compose build
+# docker-compose up
+# docker-compose -f docker-compose.yml -p website \
+# exec mysql -uroot --password=secret -e 'source /db/init_new.sql'
+
+# << EOF
+# use mysql;
+# show tables;
+# EOF
\ No newline at end of file
diff --git a/web/assets/js/home.js b/web/assets/js/home.js
index ac802073..1924eda6 100644
--- a/web/assets/js/home.js
+++ b/web/assets/js/home.js
@@ -11,7 +11,7 @@ $(document).ready(function() {
// alert(1);
},
error: function() {
- alert('Error');
+
},
'success' : function(data) {
console.log('success fetching session, redirect_search_fix');
@@ -347,7 +347,8 @@ function sendDataRequestQuery(query_protein){
'query_id_array' : "",
'search_term_parameter' : search_term,
'filter_parameter' : "None",
- 'search_term_array' : search_term_array
+ 'search_term_array' : search_term_array,
+ 'search_organism' : 0
},
crossDomain: true,
diff --git a/web/assets/js/search_results.js b/web/assets/js/search_results.js
index 5da20a86..950fc39e 100644
--- a/web/assets/js/search_results.js
+++ b/web/assets/js/search_results.js
@@ -967,6 +967,33 @@ function setNetworkTableCollapseEvents(){
});
}
+$("#organism_info_li").on('click', function(){
+ id=$("#form_organism_select").val();
+ // console.log({id});
+ res=getOrganismInfo(id);
+ // res=JSON.parse(res);
+ // res = JSON.stringify(res, null, 4);
+ // console.log({res});
+ $('#OrganismInfoModalBody').html(res);
+
+ // console.log(res['gene_names']);
+})
+
+function getOrganismInfo(OrganismId){
+ OrganismInfo="";
+
+ $.ajax({
+ type: "GET",
+ url: Url + "app.php/info_organism/"+OrganismId,
+ dataType: "text",
+ async: false,
+ success: function(data){
+ OrganismInfo = data;
+ }
+ });
+ // console.log(OrganismInfo);
+ return OrganismInfo;
+}
function sendDataRequestQuery(){
@@ -990,7 +1017,8 @@ function sendDataRequestQuery(){
'search_term_parameter' : queryParameters.SearchTermParameter,
'filter_parameter' : queryParameters.FilterParameter,
'search_term_array' : queryParameters.SearchTermArray,
-
+ 'search_organism' : queryParameters.searchOrganism,
+
},
crossDomain: true,
dataType: 'json',
@@ -1041,15 +1069,19 @@ function setUpdateQuery(){
$("#overlay_network_loader_image").css('visibility', 'visible');
$("#overlay_network_table").show();
+ searchOrganism=$("#form_organism_select").val();
+ console.log({searchOrganism})
+ // searchOrganism = 0
searchQuery = $("#search_identifier").val();
searchQueryArray = searchQuery.split(/[;,\s\t\n]/);
searchQueryArray = searchQueryArray.filter(function(value) {return value !== ''});
searchQueryString = searchQueryArray.join(',');
- console.log(searchQueryString);
+ // console.log(searchQueryString);
queryParameters.FilterParameter = getFilterParameter();
queryParameters.queryProteinIdArray = queryProteinIdArray;
queryParameters.SearchTermParameter = searchQueryString;
queryParameters.SearchTermArray = searchQueryArray;
+ queryParameters.searchOrganism = searchOrganism
$('#interactions_tab').trigger('click');
SearchResultsJSON = sendDataRequestQuery();
diff --git a/web/uploads/try/test_10,000.psi b/web/uploads/try/test_10,000.psi
new file mode 100644
index 00000000..2987f7c9
--- /dev/null
+++ b/web/uploads/try/test_10,000.psi
@@ -0,0 +1,1003 @@
+Unique identifier for interactor A Unique identifier for interactor B Alternative identifier for interactor A Alternative identifier for interactor B Aliases for A Aliases for B Interaction detection methods First author Identifier of the publication NCBI Taxonomy identifier for interactor A NCBI Taxonomy identifier for interactor B Interaction types Source databases Interaction identifier(s) Confidence score Complex expansion Biological role A Biological role B Experimental role A Experimental role B Interactor type A Interactor type B Xref for interactor A Xref for interactor B Xref for the interaction Annotations for interactor A Annotations for interactor B Annotations for the interaction NCBI Taxonomy identifier for the host organism Parameters of the interaction Creation date Update date� Checksum for interactor A Checksum for interactor B Checksum for interaction negative Feature(s) for interactor A: Feature(s) for interactor B Stoichiometry for interactor A Stoichiometry for interactor B Participant identification method for interactor A Participant identification method for interactor B
+uniprotkb:A0A024R5C7 uniprotkb:Q9P0S3 - - "intact:""CCSB ORF ID: 8775""(author assigned name)" "intact:""CCSB ORF ID: 5492""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WT00 uniprotkb:P16871 - - "intact:""CCSB ORF ID: 13071""(author assigned name)" "intact:""CCSB ORF ID: 14577""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WT00 uniprotkb:P19397 - - "intact:""CCSB ORF ID: 13071""(author assigned name)" "intact:""CCSB ORF ID: 11381""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WT00 uniprotkb:Q13651 - - "intact:""CCSB ORF ID: 13071""(author assigned name)" "intact:""CCSB ORF ID: 9496""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WT00 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 13071""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WT00 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 13071""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WT05 uniprotkb:Q8IXM6 - - "intact:""CCSB ORF ID: 100016081""(author assigned name)" "intact:""CCSB ORF ID: 11259""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WTU9 uniprotkb:Q96LK0 - - "intact:""CCSB ORF ID: 7636""(author assigned name)" "intact:""CCSB ORF ID: 5119""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WUI6 uniprotkb:B0QYN7 - - "intact:""CCSB ORF ID: 71402""(author assigned name)" "intact:""CCSB ORF ID: 4616""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WUI6 uniprotkb:Q6NX45 - - "intact:""CCSB ORF ID: 71402""(author assigned name)" "intact:""CCSB ORF ID: 14269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WUI6 uniprotkb:Q86SG2 - - "intact:""CCSB ORF ID: 71402""(author assigned name)" "intact:""CCSB ORF ID: 52849""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WYB9 uniprotkb:Q15125 - - "intact:""CCSB ORF ID: 54043""(author assigned name)" "intact:""CCSB ORF ID: 2416""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WYB9 uniprotkb:Q8NBQ5 - - "intact:""CCSB ORF ID: 54043""(author assigned name)" "intact:""CCSB ORF ID: 7376""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WYB9 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 54043""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WYB9 uniprotkb:Q9Y394 - - "intact:""CCSB ORF ID: 54043""(author assigned name)" "intact:""CCSB ORF ID: 5420""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WZH4 uniprotkb:Q9NW38 - - "intact:""CCSB ORF ID: 2272""(author assigned name)" "intact:""CCSB ORF ID: 11743""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087WZH4 uniprotkb:Q9UJ41 - - "intact:""CCSB ORF ID: 2272""(author assigned name)" "intact:""CCSB ORF ID: 1047""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A087X2D5 uniprotkb:Q9NP66 - - "intact:""CCSB ORF ID: 54682""(author assigned name)" "intact:""CCSB ORF ID: 193""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A0A0MR80 uniprotkb:Q9NP66 - - "intact:""CCSB ORF ID: 8717""(author assigned name)" "intact:""CCSB ORF ID: 193""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A0A0MT20 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 8967""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A0C4DFT7 uniprotkb:Q13651 - - "intact:""CCSB ORF ID: 5645""(author assigned name)" "intact:""CCSB ORF ID: 9496""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A0C4DFT7 uniprotkb:Q15125 - - "intact:""CCSB ORF ID: 5645""(author assigned name)" "intact:""CCSB ORF ID: 2416""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A0C4DFT7 uniprotkb:Q9NR31 - - "intact:""CCSB ORF ID: 5645""(author assigned name)" "intact:""CCSB ORF ID: 4040""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A0C4DFT9 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 72067""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - "intact:""CCSB ORF ID: 54975""(author assigned name)" "intact:""CCSB ORF ID: 4516""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A0A0J9YY01 uniprotkb:Q6NX45 - - "intact:""CCSB ORF ID: 8365""(author assigned name)" "intact:""CCSB ORF ID: 14269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:B1AHH5 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 12913""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:E9PEI2 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 11899""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:E9PJR5 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 10591""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:G8H6I3 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 3095""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:O95429 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 10352""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:O95484 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 71423""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q6PF18 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 10821""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q7Z3Y9 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 70512""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q7Z402 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 11548""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q86WT6 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 9383""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q8TAP9 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 12984""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q96M83 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 1396""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q9HAK2 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 100015559""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q9P013 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 11254""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q9UJ41 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 1047""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q9UL16 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 70435""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8K0Z3 uniprotkb:Q9ULW6 - - "intact:""CCSB ORF ID: 11452""(author assigned name)" "intact:""CCSB ORF ID: 1124""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8MXD5 uniprotkb:O43307 - - "intact:""CCSB ORF ID: 100015587""(author assigned name)" "intact:""CCSB ORF ID: 54237""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8MXD5 uniprotkb:P62140 - - "intact:""CCSB ORF ID: 100015587""(author assigned name)" "intact:""CCSB ORF ID: 4085""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8MXD5 uniprotkb:Q15669 - - "intact:""CCSB ORF ID: 100015587""(author assigned name)" "intact:""CCSB ORF ID: 7312""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8MXD5 uniprotkb:Q5W5X9 - - "intact:""CCSB ORF ID: 100015587""(author assigned name)" "intact:""CCSB ORF ID: 7605""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8MXD5 uniprotkb:Q6NX45 - - "intact:""CCSB ORF ID: 100015587""(author assigned name)" "intact:""CCSB ORF ID: 14269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:A8MXD5 uniprotkb:Q9H2G9 - - "intact:""CCSB ORF ID: 100015587""(author assigned name)" "intact:""CCSB ORF ID: 13067""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:E9PJR5 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 10591""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:O00463 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 2239""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:O14709 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 100068217""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:O15525 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 7214""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:O76064 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 4755""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:O95429 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 10352""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:P19474 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 130""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:P31943 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 4689""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:P35520 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 359""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:P49910 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 1549""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:P60981 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 6588""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:P61244 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 4384""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q53GI3 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 11750""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q5T752 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 100064144""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q5T7W0 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 71372""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q5VWX1 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 1138""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q6L8H4 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 100015911""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q8TC71 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 1340""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q96BV0 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 13419""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q96C36 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 430""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q96EG3 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 55254""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q96HD9 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 2837""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q96JP5 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 10608""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q96JW4 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 10034""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q99697 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 6983""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q9H257 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 5439""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q9H320 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 52584""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q9HAK2 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 100015559""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q9NQB0 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 9999""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B0QYN7 uniprotkb:Q9NWW9 - - "intact:""CCSB ORF ID: 4616""(author assigned name)" "intact:""CCSB ORF ID: 100016111""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B1AHH5 uniprotkb:P0CW24 - - "intact:""CCSB ORF ID: 12913""(author assigned name)" "intact:""CCSB ORF ID: 5304""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B1AHH5 uniprotkb:Q3SY84 - - "intact:""CCSB ORF ID: 12913""(author assigned name)" "intact:""CCSB ORF ID: 52718""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B1AHH5 uniprotkb:Q5XKE5 - - "intact:""CCSB ORF ID: 12913""(author assigned name)" "intact:""CCSB ORF ID: 14366""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B1AHH5 uniprotkb:Q8NDH6 - - "intact:""CCSB ORF ID: 12913""(author assigned name)" "intact:""CCSB ORF ID: 8637""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B1AHH5 uniprotkb:Q96A65 - - "intact:""CCSB ORF ID: 12913""(author assigned name)" "intact:""CCSB ORF ID: 13171""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B1AHH5 uniprotkb:Q9NZ72 - - "intact:""CCSB ORF ID: 12913""(author assigned name)" "intact:""CCSB ORF ID: 6710""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:B2RUY7 uniprotkb:P17024 - - "intact:""CCSB ORF ID: 70742""(author assigned name)" "intact:""CCSB ORF ID: 55264""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:C9IZY8 uniprotkb:E9PSE9 - - "intact:""CCSB ORF ID: 2340""(author assigned name)" "intact:""CCSB ORF ID: 54249""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:C9IZY8 uniprotkb:Q6ZUS5 - - "intact:""CCSB ORF ID: 2340""(author assigned name)" "intact:""CCSB ORF ID: 10997""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:C9IZY8 uniprotkb:Q9H0I2 - - "intact:""CCSB ORF ID: 2340""(author assigned name)" "intact:""CCSB ORF ID: 4798""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:C9IZY8 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 2340""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:C9JJ79 uniprotkb:O60784 - - "intact:""CCSB ORF ID: 12916""(author assigned name)" "intact:""CCSB ORF ID: 11709""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:C9JJ79 uniprotkb:O95994 - - "intact:""CCSB ORF ID: 12916""(author assigned name)" "intact:""CCSB ORF ID: 549""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PEI2 uniprotkb:O95994 - - "intact:""CCSB ORF ID: 11899""(author assigned name)" "intact:""CCSB ORF ID: 549""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PEI2 uniprotkb:P50479 - - "intact:""CCSB ORF ID: 11899""(author assigned name)" "intact:""CCSB ORF ID: 7528""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PEI2 uniprotkb:P51692 - - "intact:""CCSB ORF ID: 11899""(author assigned name)" "intact:""CCSB ORF ID: 12900""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PEI2 uniprotkb:Q3KNR5 - - "intact:""CCSB ORF ID: 11899""(author assigned name)" "intact:""CCSB ORF ID: 53028""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PEI2 uniprotkb:Q5W5X9 - - "intact:""CCSB ORF ID: 11899""(author assigned name)" "intact:""CCSB ORF ID: 7605""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PEI2 uniprotkb:Q7Z6G8 - - "intact:""CCSB ORF ID: 11899""(author assigned name)" "intact:""CCSB ORF ID: 8665""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PEI2 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 11899""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PEI2 uniprotkb:Q9UKT9 - - "intact:""CCSB ORF ID: 11899""(author assigned name)" "intact:""CCSB ORF ID: 10016""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PJR5 uniprotkb:Q15669 - - "intact:""CCSB ORF ID: 10591""(author assigned name)" "intact:""CCSB ORF ID: 7312""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PJR5 uniprotkb:Q3KP44 - - "intact:""CCSB ORF ID: 10591""(author assigned name)" "intact:""CCSB ORF ID: 53004""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PJR5 uniprotkb:Q5W5X9 - - "intact:""CCSB ORF ID: 10591""(author assigned name)" "intact:""CCSB ORF ID: 7605""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PJR5 uniprotkb:Q5XKE5 - - "intact:""CCSB ORF ID: 10591""(author assigned name)" "intact:""CCSB ORF ID: 14366""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PJR5 uniprotkb:Q6UXY1 - - "intact:""CCSB ORF ID: 10591""(author assigned name)" "intact:""CCSB ORF ID: 7586""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PJR5 uniprotkb:Q86SG2 - - "intact:""CCSB ORF ID: 10591""(author assigned name)" "intact:""CCSB ORF ID: 52849""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PJR5 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 10591""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PJR5 uniprotkb:Q9NZ72 - - "intact:""CCSB ORF ID: 10591""(author assigned name)" "intact:""CCSB ORF ID: 6710""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PSE9 uniprotkb:P51692 - - "intact:""CCSB ORF ID: 54249""(author assigned name)" "intact:""CCSB ORF ID: 12900""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PSE9 uniprotkb:Q15293 - - "intact:""CCSB ORF ID: 54249""(author assigned name)" "intact:""CCSB ORF ID: 6932""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PSE9 uniprotkb:Q15669 - - "intact:""CCSB ORF ID: 54249""(author assigned name)" "intact:""CCSB ORF ID: 7312""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PSE9 uniprotkb:Q6NX45 - - "intact:""CCSB ORF ID: 54249""(author assigned name)" "intact:""CCSB ORF ID: 14269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PSE9 uniprotkb:Q8N0X2 - - "intact:""CCSB ORF ID: 54249""(author assigned name)" "intact:""CCSB ORF ID: 8563""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PSE9 uniprotkb:Q9H269 - - "intact:""CCSB ORF ID: 54249""(author assigned name)" "intact:""CCSB ORF ID: 14624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PSE9 uniprotkb:Q9H668 - - "intact:""CCSB ORF ID: 54249""(author assigned name)" "intact:""CCSB ORF ID: 5868""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:E9PSE9 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 54249""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:F6Q468 uniprotkb:P50479 - - "intact:""CCSB ORF ID: 71957""(author assigned name)" "intact:""CCSB ORF ID: 7528""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:G3XAK1 uniprotkb:Q8WV19 - - "intact:""CCSB ORF ID: 11448""(author assigned name)" "intact:""CCSB ORF ID: 70334""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:I3L0H3 uniprotkb:O43320 - - "intact:""CCSB ORF ID: 9932""(author assigned name)" "intact:""CCSB ORF ID: 100015571""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:I3L0H3 uniprotkb:P17024 - - "intact:""CCSB ORF ID: 9932""(author assigned name)" "intact:""CCSB ORF ID: 55264""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:I3L0H3 uniprotkb:P51687 - - "intact:""CCSB ORF ID: 9932""(author assigned name)" "intact:""CCSB ORF ID: 71191""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:I3L0H3 uniprotkb:Q7Z402 - - "intact:""CCSB ORF ID: 9932""(author assigned name)" "intact:""CCSB ORF ID: 11548""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:I3L0H3 uniprotkb:Q99633 - - "intact:""CCSB ORF ID: 9932""(author assigned name)" "intact:""CCSB ORF ID: 961""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:I3L0H3 uniprotkb:Q99697 - - "intact:""CCSB ORF ID: 9932""(author assigned name)" "intact:""CCSB ORF ID: 6983""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00258 uniprotkb:Q9BZV2 - - "intact:""CCSB ORF ID: 637""(author assigned name)" "intact:""CCSB ORF ID: 9333""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00303 uniprotkb:O95396 - - "intact:""CCSB ORF ID: 3148""(author assigned name)" "intact:""CCSB ORF ID: 198""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00303 uniprotkb:P51687 - - "intact:""CCSB ORF ID: 3148""(author assigned name)" "intact:""CCSB ORF ID: 71191""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00303 uniprotkb:P78424 - - "intact:""CCSB ORF ID: 3148""(author assigned name)" "intact:""CCSB ORF ID: 100016215""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00303 uniprotkb:Q6ZYL4 - - "intact:""CCSB ORF ID: 3148""(author assigned name)" "intact:""CCSB ORF ID: 12064""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00303 uniprotkb:Q8WUZ0 - - "intact:""CCSB ORF ID: 3148""(author assigned name)" "intact:""CCSB ORF ID: 11120""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00305 uniprotkb:Q6NX45 - - "intact:""CCSB ORF ID: 71642""(author assigned name)" "intact:""CCSB ORF ID: 14269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00305 uniprotkb:Q8N5A5 - - "intact:""CCSB ORF ID: 71642""(author assigned name)" "intact:""CCSB ORF ID: 10101""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00463 uniprotkb:Q12933 - - "intact:""CCSB ORF ID: 2239""(author assigned name)" "intact:""CCSB ORF ID: 9637""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00562 uniprotkb:Q96LZ2 - - "intact:""CCSB ORF ID: 2597""(author assigned name)" "intact:""CCSB ORF ID: 52806""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00566 uniprotkb:Q13895 - - "intact:""CCSB ORF ID: 54491""(author assigned name)" "intact:""CCSB ORF ID: 11723""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00566 uniprotkb:Q9UBU8 - - "intact:""CCSB ORF ID: 54491""(author assigned name)" "intact:""CCSB ORF ID: 4430""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00566 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 54491""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00592 uniprotkb:P37235 - - "intact:""CCSB ORF ID: 71682""(author assigned name)" "intact:""CCSB ORF ID: 730""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00746 uniprotkb:Q5H9K5 - - "intact:""CCSB ORF ID: 4351""(author assigned name)" "intact:""CCSB ORF ID: 10568""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00746 uniprotkb:Q96PF1 - - "intact:""CCSB ORF ID: 4351""(author assigned name)" "intact:""CCSB ORF ID: 100015481""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00746 uniprotkb:Q9H257 - - "intact:""CCSB ORF ID: 4351""(author assigned name)" "intact:""CCSB ORF ID: 5439""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00746 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 4351""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O00746 uniprotkb:Q9UMX1 - - "intact:""CCSB ORF ID: 4351""(author assigned name)" "intact:""CCSB ORF ID: 6119""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14494 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 11277""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:O95214 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 8001""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:P19397 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 11381""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:P60508 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 14525""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q15125 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 2416""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q6PEY1 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 10773""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q7Z7N9 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 13641""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q86W33 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 748""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q86WK6 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 11362""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q96HE8 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 2831""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q96MV8 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 52707""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q9NP94 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 52686""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q9NWD8 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 2838""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14523 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 2538""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14525 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 72155""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14684 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 4792""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14709 uniprotkb:P10073 - - "intact:""CCSB ORF ID: 100068217""(author assigned name)" "intact:""CCSB ORF ID: 53524""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14709 uniprotkb:P57086 - - "intact:""CCSB ORF ID: 100068217""(author assigned name)" "intact:""CCSB ORF ID: 3585""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14753 uniprotkb:O95994 - - "intact:""CCSB ORF ID: 10848""(author assigned name)" "intact:""CCSB ORF ID: 549""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14753 uniprotkb:Q96IK5 - - "intact:""CCSB ORF ID: 10848""(author assigned name)" "intact:""CCSB ORF ID: 4516""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14796 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 13003""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14818 uniprotkb:Q5VVQ6 - - "intact:""CCSB ORF ID: 100008214""(author assigned name)" "intact:""CCSB ORF ID: 70257""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14917 uniprotkb:O95214 - - "intact:""CCSB ORF ID: 71538""(author assigned name)" "intact:""CCSB ORF ID: 8001""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14958 uniprotkb:Q13895 - - "intact:""CCSB ORF ID: 12885""(author assigned name)" "intact:""CCSB ORF ID: 11723""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O14958 uniprotkb:Q8WUZ0 - - "intact:""CCSB ORF ID: 12885""(author assigned name)" "intact:""CCSB ORF ID: 11120""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15079 uniprotkb:Q6NTF9 - - "intact:""CCSB ORF ID: 10217""(author assigned name)" "intact:""CCSB ORF ID: 4836""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15079 uniprotkb:Q9BTE1 - - "intact:""CCSB ORF ID: 10217""(author assigned name)" "intact:""CCSB ORF ID: 3527""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15182 uniprotkb:O95994 - - "intact:""CCSB ORF ID: 5538""(author assigned name)" "intact:""CCSB ORF ID: 549""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15182 uniprotkb:P19237 - - "intact:""CCSB ORF ID: 5538""(author assigned name)" "intact:""CCSB ORF ID: 6326""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15182 uniprotkb:Q15293 - - "intact:""CCSB ORF ID: 5538""(author assigned name)" "intact:""CCSB ORF ID: 6932""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15182 uniprotkb:Q2VYF4 - - "intact:""CCSB ORF ID: 5538""(author assigned name)" "intact:""CCSB ORF ID: 2136""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15205 uniprotkb:Q9HAK2 - - "intact:""CCSB ORF ID: 2663""(author assigned name)" "intact:""CCSB ORF ID: 100015559""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15243 uniprotkb:P56557 - - "intact:""CCSB ORF ID: 13303""(author assigned name)" "intact:""CCSB ORF ID: 7986""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15243 uniprotkb:Q96HE8 - - "intact:""CCSB ORF ID: 13303""(author assigned name)" "intact:""CCSB ORF ID: 2831""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15243 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 13303""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15243 uniprotkb:Q9NP94 - - "intact:""CCSB ORF ID: 13303""(author assigned name)" "intact:""CCSB ORF ID: 52686""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15243 uniprotkb:Q9UBD6 - - "intact:""CCSB ORF ID: 13303""(author assigned name)" "intact:""CCSB ORF ID: 13221""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15273 uniprotkb:O75935 - - "intact:""CCSB ORF ID: 6356""(author assigned name)" "intact:""CCSB ORF ID: 3972""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15273 uniprotkb:Q15669 - - "intact:""CCSB ORF ID: 6356""(author assigned name)" "intact:""CCSB ORF ID: 7312""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15273 uniprotkb:Q3KP44 - - "intact:""CCSB ORF ID: 6356""(author assigned name)" "intact:""CCSB ORF ID: 53004""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15273 uniprotkb:Q8WXK3 - - "intact:""CCSB ORF ID: 6356""(author assigned name)" "intact:""CCSB ORF ID: 7122""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15273 uniprotkb:Q9H7B4 - - "intact:""CCSB ORF ID: 6356""(author assigned name)" "intact:""CCSB ORF ID: 13232""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15273 uniprotkb:Q9H8W4 - - "intact:""CCSB ORF ID: 6356""(author assigned name)" "intact:""CCSB ORF ID: 6953""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15273 uniprotkb:Q9NZL3 - - "intact:""CCSB ORF ID: 6356""(author assigned name)" "intact:""CCSB ORF ID: 11777""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15374 uniprotkb:Q9BRK0 - - "intact:""CCSB ORF ID: 7490""(author assigned name)" "intact:""CCSB ORF ID: 4811""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15432 uniprotkb:O95214 - - "intact:""CCSB ORF ID: 13112""(author assigned name)" "intact:""CCSB ORF ID: 8001""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15432 uniprotkb:P41181 - - "intact:""CCSB ORF ID: 13112""(author assigned name)" "intact:""CCSB ORF ID: 11089""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15432 uniprotkb:Q15125 - - "intact:""CCSB ORF ID: 13112""(author assigned name)" "intact:""CCSB ORF ID: 2416""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15432 uniprotkb:Q96HE8 - - "intact:""CCSB ORF ID: 13112""(author assigned name)" "intact:""CCSB ORF ID: 2831""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15432 uniprotkb:Q96MV8 - - "intact:""CCSB ORF ID: 13112""(author assigned name)" "intact:""CCSB ORF ID: 52707""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15432 uniprotkb:Q9H5J4 - - "intact:""CCSB ORF ID: 13112""(author assigned name)" "intact:""CCSB ORF ID: 1790""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15432 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 13112""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15432 uniprotkb:Q9UBD6 - - "intact:""CCSB ORF ID: 13112""(author assigned name)" "intact:""CCSB ORF ID: 13221""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15432 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 13112""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O15479 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 1580""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43278 uniprotkb:Q8TD06 - - "intact:""CCSB ORF ID: 6068""(author assigned name)" "intact:""CCSB ORF ID: 13286""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43278 uniprotkb:Q92520 - - "intact:""CCSB ORF ID: 6068""(author assigned name)" "intact:""CCSB ORF ID: 11126""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43278 uniprotkb:Q9NVC3 - - "intact:""CCSB ORF ID: 6068""(author assigned name)" "intact:""CCSB ORF ID: 3619""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43307 uniprotkb:P13682 - - "intact:""CCSB ORF ID: 54237""(author assigned name)" "intact:""CCSB ORF ID: 71060""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43307 uniprotkb:Q14119 - - "intact:""CCSB ORF ID: 54237""(author assigned name)" "intact:""CCSB ORF ID: 100015985""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43307 uniprotkb:Q6PF18 - - "intact:""CCSB ORF ID: 54237""(author assigned name)" "intact:""CCSB ORF ID: 10821""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43307 uniprotkb:Q7Z402 - - "intact:""CCSB ORF ID: 54237""(author assigned name)" "intact:""CCSB ORF ID: 11548""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43307 uniprotkb:Q86VK4 - - "intact:""CCSB ORF ID: 54237""(author assigned name)" "intact:""CCSB ORF ID: 11738""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43307 uniprotkb:Q9HBE1 - - "intact:""CCSB ORF ID: 54237""(author assigned name)" "intact:""CCSB ORF ID: 12624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43307 uniprotkb:Q9NQ75 - - "intact:""CCSB ORF ID: 54237""(author assigned name)" "intact:""CCSB ORF ID: 8369""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43307 uniprotkb:Q9NW38 - - "intact:""CCSB ORF ID: 54237""(author assigned name)" "intact:""CCSB ORF ID: 11743""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43307 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 54237""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43307 uniprotkb:Q9Y247 - - "intact:""CCSB ORF ID: 54237""(author assigned name)" "intact:""CCSB ORF ID: 1846""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:O95994 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 549""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:P50479 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 7528""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:P51692 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 12900""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:P59942 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 70504""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:Q15669 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 7312""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:Q5W5X9 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 7605""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:Q6UXY1 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 7586""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:Q8WVP5 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 711""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:Q9BUN5 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 8003""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43320 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 100015571""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43422 uniprotkb:Q13228 - - "intact:""CCSB ORF ID: 53949""(author assigned name)" "intact:""CCSB ORF ID: 2836""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43447 uniprotkb:Q99633 - - "intact:""CCSB ORF ID: 947""(author assigned name)" "intact:""CCSB ORF ID: 961""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43559 uniprotkb:Q5XKE5 - - "intact:""CCSB ORF ID: 2917""(author assigned name)" "intact:""CCSB ORF ID: 14366""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43559 uniprotkb:Q6NVV7 - - "intact:""CCSB ORF ID: 2917""(author assigned name)" "intact:""CCSB ORF ID: 14501""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43559 uniprotkb:Q8N456 - - "intact:""CCSB ORF ID: 2917""(author assigned name)" "intact:""CCSB ORF ID: 8349""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43559 uniprotkb:Q8TF47 - - "intact:""CCSB ORF ID: 2917""(author assigned name)" "intact:""CCSB ORF ID: 70794""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43559 uniprotkb:Q9BQD7 - - "intact:""CCSB ORF ID: 2917""(author assigned name)" "intact:""CCSB ORF ID: 3348""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43559 uniprotkb:Q9BWK5 - - "intact:""CCSB ORF ID: 2917""(author assigned name)" "intact:""CCSB ORF ID: 20""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43559 uniprotkb:Q9NPD3 - - "intact:""CCSB ORF ID: 2917""(author assigned name)" "intact:""CCSB ORF ID: 4107""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43559 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 2917""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43598 uniprotkb:Q3KNR5 - - "intact:""CCSB ORF ID: 6845""(author assigned name)" "intact:""CCSB ORF ID: 53028""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43598 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 6845""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43679 uniprotkb:Q969H8 - - "intact:""CCSB ORF ID: 100009631""(author assigned name)" "intact:""CCSB ORF ID: 6904""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43681 uniprotkb:Q15293 - - "intact:""CCSB ORF ID: 4089""(author assigned name)" "intact:""CCSB ORF ID: 6932""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43681 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 4089""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43681 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 4089""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43681 uniprotkb:Q96GL9 - - "intact:""CCSB ORF ID: 4089""(author assigned name)" "intact:""CCSB ORF ID: 6717""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43736 uniprotkb:Q7Z7N9 - - "intact:""CCSB ORF ID: 11300""(author assigned name)" "intact:""CCSB ORF ID: 13641""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43736 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 11300""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43736 uniprotkb:Q9BVK6 - - "intact:""CCSB ORF ID: 11300""(author assigned name)" "intact:""CCSB ORF ID: 6100""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43759 uniprotkb:Q08426 - - "intact:""CCSB ORF ID: 3594""(author assigned name)" "intact:""CCSB ORF ID: 52993""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43866 uniprotkb:P60508 - - "intact:""CCSB ORF ID: 8384""(author assigned name)" "intact:""CCSB ORF ID: 14525""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43866 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 8384""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O43866 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 8384""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O60831 uniprotkb:Q9ULP0 - - "intact:""CCSB ORF ID: 6240""(author assigned name)" "intact:""CCSB ORF ID: 6895""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O60880 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 13022""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O75084 uniprotkb:P10620 - - "intact:""CCSB ORF ID: 7138""(author assigned name)" "intact:""CCSB ORF ID: 5726""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O75084 uniprotkb:P37235 - - "intact:""CCSB ORF ID: 7138""(author assigned name)" "intact:""CCSB ORF ID: 730""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O75084 uniprotkb:Q9H2J7 - - "intact:""CCSB ORF ID: 7138""(author assigned name)" "intact:""CCSB ORF ID: 14524""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O75084 uniprotkb:Q9NP94 - - "intact:""CCSB ORF ID: 7138""(author assigned name)" "intact:""CCSB ORF ID: 52686""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O75419 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 4828""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O75688 uniprotkb:Q9UHA4 - - "intact:""CCSB ORF ID: 8740""(author assigned name)" "intact:""CCSB ORF ID: 13119""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O75695 uniprotkb:P36404 - - "intact:""CCSB ORF ID: 11374""(author assigned name)" "intact:""CCSB ORF ID: 7933""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O75791 uniprotkb:Q9H788 - - "intact:""CCSB ORF ID: 8327""(author assigned name)" "intact:""CCSB ORF ID: 55307""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O75791 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 8327""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O76003 uniprotkb:P78412 - - "intact:""CCSB ORF ID: 5473""(author assigned name)" "intact:""CCSB ORF ID: 70633""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O76003 uniprotkb:Q53S33 - - "intact:""CCSB ORF ID: 5473""(author assigned name)" "intact:""CCSB ORF ID: 100015575""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O76003 uniprotkb:Q5T749 - - "intact:""CCSB ORF ID: 5473""(author assigned name)" "intact:""CCSB ORF ID: 100016119""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O76003 uniprotkb:Q5TA82 - - "intact:""CCSB ORF ID: 5473""(author assigned name)" "intact:""CCSB ORF ID: 54855""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O76003 uniprotkb:Q86VK4 - - "intact:""CCSB ORF ID: 5473""(author assigned name)" "intact:""CCSB ORF ID: 11738""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O76003 uniprotkb:Q9BYQ6 - - "intact:""CCSB ORF ID: 5473""(author assigned name)" "intact:""CCSB ORF ID: 54354""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O76064 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 4755""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O76071 uniprotkb:Q3KP44 - - "intact:""CCSB ORF ID: 6755""(author assigned name)" "intact:""CCSB ORF ID: 53004""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O94827 uniprotkb:P61587 - - "intact:""CCSB ORF ID: 115""(author assigned name)" "intact:""CCSB ORF ID: 1095""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O94827 uniprotkb:Q15669 - - "intact:""CCSB ORF ID: 115""(author assigned name)" "intact:""CCSB ORF ID: 7312""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O94868 uniprotkb:Q8NEH6 - - "intact:""CCSB ORF ID: 6306""(author assigned name)" "intact:""CCSB ORF ID: 1768""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O94868 uniprotkb:Q8TD31 - - "intact:""CCSB ORF ID: 6306""(author assigned name)" "intact:""CCSB ORF ID: 53053""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O94868 uniprotkb:Q9NUQ8 - - "intact:""CCSB ORF ID: 6306""(author assigned name)" "intact:""CCSB ORF ID: 11584""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95167 uniprotkb:O95214 - - "intact:""CCSB ORF ID: 12185""(author assigned name)" "intact:""CCSB ORF ID: 8001""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95167 uniprotkb:P41181 - - "intact:""CCSB ORF ID: 12185""(author assigned name)" "intact:""CCSB ORF ID: 11089""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95167 uniprotkb:Q15125 - - "intact:""CCSB ORF ID: 12185""(author assigned name)" "intact:""CCSB ORF ID: 2416""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95167 uniprotkb:Q96HE8 - - "intact:""CCSB ORF ID: 12185""(author assigned name)" "intact:""CCSB ORF ID: 2831""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95167 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 12185""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:P16871 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 14577""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:P19397 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 11381""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:P60508 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 14525""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q13651 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 9496""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q8N690 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 14809""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q96HE8 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 2831""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q96MV8 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 52707""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q99523 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 100011253""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q9BY50 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 94""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q9NP94 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 52686""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q9NR31 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 4040""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95183 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 12894""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:P27449 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 4781""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:P78329 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 70423""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:Q08426 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 52993""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:Q14534 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 474""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:Q6Y1H2 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 10939""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:Q8IWU4 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 54579""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:Q8IXM6 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 11259""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:Q8WVP7 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 689""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:Q8WWP7 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 11373""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:Q9NZQ7 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 13856""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95214 uniprotkb:Q9P0S3 - - "intact:""CCSB ORF ID: 8001""(author assigned name)" "intact:""CCSB ORF ID: 5492""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95295 uniprotkb:P51946 - - "intact:""CCSB ORF ID: 4350""(author assigned name)" "intact:""CCSB ORF ID: 5564""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95295 uniprotkb:Q7Z3Y9 - - "intact:""CCSB ORF ID: 4350""(author assigned name)" "intact:""CCSB ORF ID: 70512""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95295 uniprotkb:Q86XT2 - - "intact:""CCSB ORF ID: 4350""(author assigned name)" "intact:""CCSB ORF ID: 12213""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95295 uniprotkb:Q96LX7 - - "intact:""CCSB ORF ID: 4350""(author assigned name)" "intact:""CCSB ORF ID: 56479""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95295 uniprotkb:Q9UJ41 - - "intact:""CCSB ORF ID: 4350""(author assigned name)" "intact:""CCSB ORF ID: 1047""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95396 uniprotkb:O95994 - - "intact:""CCSB ORF ID: 198""(author assigned name)" "intact:""CCSB ORF ID: 549""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95429 uniprotkb:P0DMV9 - - "intact:""CCSB ORF ID: 10352""(author assigned name)" "intact:""CCSB ORF ID: 100010886""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95484 uniprotkb:P19397 - - "intact:""CCSB ORF ID: 71423""(author assigned name)" "intact:""CCSB ORF ID: 11381""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95484 uniprotkb:P50479 - - "intact:""CCSB ORF ID: 71423""(author assigned name)" "intact:""CCSB ORF ID: 7528""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95484 uniprotkb:Q6PEY1 - - "intact:""CCSB ORF ID: 71423""(author assigned name)" "intact:""CCSB ORF ID: 10773""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95484 uniprotkb:Q86WK6 - - "intact:""CCSB ORF ID: 71423""(author assigned name)" "intact:""CCSB ORF ID: 11362""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95484 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 71423""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95484 uniprotkb:Q96CE8 - - "intact:""CCSB ORF ID: 71423""(author assigned name)" "intact:""CCSB ORF ID: 7408""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95484 uniprotkb:Q96GM1 - - "intact:""CCSB ORF ID: 71423""(author assigned name)" "intact:""CCSB ORF ID: 6691""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95484 uniprotkb:Q9NWD8 - - "intact:""CCSB ORF ID: 71423""(author assigned name)" "intact:""CCSB ORF ID: 2838""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95484 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 71423""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95502 uniprotkb:Q15012 - - "intact:""CCSB ORF ID: 100015637""(author assigned name)" "intact:""CCSB ORF ID: 4716""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95502 uniprotkb:Q9NP94 - - "intact:""CCSB ORF ID: 100015637""(author assigned name)" "intact:""CCSB ORF ID: 52686""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95502 uniprotkb:Q9NY26 - - "intact:""CCSB ORF ID: 100015637""(author assigned name)" "intact:""CCSB ORF ID: 5151""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95502 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 100015637""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95672 uniprotkb:P59942 - - "intact:""CCSB ORF ID: 12081""(author assigned name)" "intact:""CCSB ORF ID: 70504""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95817 uniprotkb:P0DMV9 - - "intact:""CCSB ORF ID: 5066""(author assigned name)" "intact:""CCSB ORF ID: 100010886""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95870 uniprotkb:Q6NTF9 - - "intact:""CCSB ORF ID: 8110""(author assigned name)" "intact:""CCSB ORF ID: 4836""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95870 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 8110""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95989 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 4990""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:P0C0S5 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 12839""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:P29597 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 7339""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:P30049 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 3133""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:P46020 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 71914""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:P60660 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 5974""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:P78424 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 100016215""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q00G26 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 56140""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q06547 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 11751""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q14764 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 7592""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q15052 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 11410""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q53S33 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 100015575""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q569K6 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 71432""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q5PSV4 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 4860""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q6PF18 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 10821""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q6ZYL4 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 12064""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q7Z3K3 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 10876""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q86VK4 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 11738""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q8IUQ0 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 11093""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q8N668 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 13160""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q8TAP9 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 12984""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q8TEB1 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 71201""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q92673 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 70242""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q96JP5 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 10608""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q99633 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 961""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q9BWW8 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 11240""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q9BYG5 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 10823""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q9H8V3 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 71997""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q9UL36 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 70322""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:O95994 uniprotkb:Q9Y6X6 - - "intact:""CCSB ORF ID: 549""(author assigned name)" "intact:""CCSB ORF ID: 72125""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P01571 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 52565""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P03973 uniprotkb:P07237 - - "intact:""CCSB ORF ID: 13088""(author assigned name)" "intact:""CCSB ORF ID: 2507""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P04440 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 12897""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P07237 uniprotkb:Q5TA82 - - "intact:""CCSB ORF ID: 2507""(author assigned name)" "intact:""CCSB ORF ID: 54855""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P07237 uniprotkb:Q9BYQ6 - - "intact:""CCSB ORF ID: 2507""(author assigned name)" "intact:""CCSB ORF ID: 54354""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P0CW24 uniprotkb:P17024 - - "intact:""CCSB ORF ID: 5304""(author assigned name)" "intact:""CCSB ORF ID: 55264""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P0CW24 uniprotkb:P40937 - - "intact:""CCSB ORF ID: 5304""(author assigned name)" "intact:""CCSB ORF ID: 3772""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P0CW24 uniprotkb:Q6PF18 - - "intact:""CCSB ORF ID: 5304""(author assigned name)" "intact:""CCSB ORF ID: 10821""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P0DJI9 uniprotkb:Q6NTF9 - - "intact:""CCSB ORF ID: 13116""(author assigned name)" "intact:""CCSB ORF ID: 4836""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P0DMM9 uniprotkb:Q5VWX1 - - "intact:""CCSB ORF ID: 7717""(author assigned name)" "intact:""CCSB ORF ID: 1138""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P0DMM9 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 55035""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P0DMN0 uniprotkb:Q5VWX1 - - "intact:""CCSB ORF ID: 7717""(author assigned name)" "intact:""CCSB ORF ID: 1138""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P0DMN0 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 55035""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P10073 uniprotkb:P49910 - - "intact:""CCSB ORF ID: 53524""(author assigned name)" "intact:""CCSB ORF ID: 1549""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P10073 uniprotkb:Q53GI3 - - "intact:""CCSB ORF ID: 53524""(author assigned name)" "intact:""CCSB ORF ID: 11750""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P10073 uniprotkb:Q96MY7 - - "intact:""CCSB ORF ID: 53524""(author assigned name)" "intact:""CCSB ORF ID: 71174""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P10073 uniprotkb:Q9H4T2 - - "intact:""CCSB ORF ID: 53524""(author assigned name)" "intact:""CCSB ORF ID: 4224""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P10620 uniprotkb:Q8WWP7 - - "intact:""CCSB ORF ID: 5726""(author assigned name)" "intact:""CCSB ORF ID: 11373""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P12524 uniprotkb:Q9P2M1 - - "intact:""CCSB ORF ID: 7111""(author assigned name)" "intact:""CCSB ORF ID: 70192""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P12524 uniprotkb:Q9Y5R4 - - "intact:""CCSB ORF ID: 7111""(author assigned name)" "intact:""CCSB ORF ID: 3511""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P13631 uniprotkb:P28702 - - "intact:""CCSB ORF ID: 71679""(author assigned name)" "intact:""CCSB ORF ID: 3425""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P13667 uniprotkb:Q9BYQ6 - - "intact:""CCSB ORF ID: 3134""(author assigned name)" "intact:""CCSB ORF ID: 54354""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P13682 uniprotkb:Q8N5A5 - - "intact:""CCSB ORF ID: 71060""(author assigned name)" "intact:""CCSB ORF ID: 10101""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P16871 uniprotkb:Q92520 - - "intact:""CCSB ORF ID: 14577""(author assigned name)" "intact:""CCSB ORF ID: 11126""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P16871 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 14577""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17024 uniprotkb:P51692 - - "intact:""CCSB ORF ID: 55264""(author assigned name)" "intact:""CCSB ORF ID: 12900""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17024 uniprotkb:P59942 - - "intact:""CCSB ORF ID: 55264""(author assigned name)" "intact:""CCSB ORF ID: 70504""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17024 uniprotkb:Q6NVV7 - - "intact:""CCSB ORF ID: 55264""(author assigned name)" "intact:""CCSB ORF ID: 14501""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17024 uniprotkb:Q6NX45 - - "intact:""CCSB ORF ID: 55264""(author assigned name)" "intact:""CCSB ORF ID: 14269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17024 uniprotkb:Q9BUN5 - - "intact:""CCSB ORF ID: 55264""(author assigned name)" "intact:""CCSB ORF ID: 8003""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17024 uniprotkb:Q9H2G9 - - "intact:""CCSB ORF ID: 55264""(author assigned name)" "intact:""CCSB ORF ID: 13067""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17024 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 55264""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17024 uniprotkb:Q9UKJ5 - - "intact:""CCSB ORF ID: 55264""(author assigned name)" "intact:""CCSB ORF ID: 2645""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17568 uniprotkb:P51800 - - "intact:""CCSB ORF ID: 100009545""(author assigned name)" "intact:""CCSB ORF ID: 11895""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17568 uniprotkb:Q01664 - - "intact:""CCSB ORF ID: 100009545""(author assigned name)" "intact:""CCSB ORF ID: 2909""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17568 uniprotkb:Q8TAU3 - - "intact:""CCSB ORF ID: 100009545""(author assigned name)" "intact:""CCSB ORF ID: 8400""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P17568 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 100009545""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P18615 uniprotkb:Q8WX92 - - "intact:""CCSB ORF ID: 11790""(author assigned name)" "intact:""CCSB ORF ID: 100002417""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19237 uniprotkb:P55081 - - "intact:""CCSB ORF ID: 6326""(author assigned name)" "intact:""CCSB ORF ID: 11817""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19237 uniprotkb:Q5PSV4 - - "intact:""CCSB ORF ID: 6326""(author assigned name)" "intact:""CCSB ORF ID: 4860""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19237 uniprotkb:Q6PF18 - - "intact:""CCSB ORF ID: 6326""(author assigned name)" "intact:""CCSB ORF ID: 10821""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19237 uniprotkb:Q96MY7 - - "intact:""CCSB ORF ID: 6326""(author assigned name)" "intact:""CCSB ORF ID: 71174""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19237 uniprotkb:Q96PF1 - - "intact:""CCSB ORF ID: 6326""(author assigned name)" "intact:""CCSB ORF ID: 100015481""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19237 uniprotkb:Q9P013 - - "intact:""CCSB ORF ID: 6326""(author assigned name)" "intact:""CCSB ORF ID: 11254""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19237 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 6326""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19237 uniprotkb:Q9UL16 - - "intact:""CCSB ORF ID: 6326""(author assigned name)" "intact:""CCSB ORF ID: 70435""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19397 uniprotkb:P27449 - - "intact:""CCSB ORF ID: 11381""(author assigned name)" "intact:""CCSB ORF ID: 4781""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19397 uniprotkb:Q01453 - - "intact:""CCSB ORF ID: 11381""(author assigned name)" "intact:""CCSB ORF ID: 7323""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19397 uniprotkb:Q92843 - - "intact:""CCSB ORF ID: 11381""(author assigned name)" "intact:""CCSB ORF ID: 53726""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19397 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 11381""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P19397 uniprotkb:Q9Y5I4 - - "intact:""CCSB ORF ID: 11381""(author assigned name)" "intact:""CCSB ORF ID: 71864""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P20807 uniprotkb:Q08426 - - "intact:""CCSB ORF ID: 8876""(author assigned name)" "intact:""CCSB ORF ID: 52993""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P20807 uniprotkb:Q13895 - - "intact:""CCSB ORF ID: 8876""(author assigned name)" "intact:""CCSB ORF ID: 11723""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P20807 uniprotkb:Q14119 - - "intact:""CCSB ORF ID: 8876""(author assigned name)" "intact:""CCSB ORF ID: 100015985""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P20807 uniprotkb:Q6PF18 - - "intact:""CCSB ORF ID: 8876""(author assigned name)" "intact:""CCSB ORF ID: 10821""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P20807 uniprotkb:Q86VK4 - - "intact:""CCSB ORF ID: 8876""(author assigned name)" "intact:""CCSB ORF ID: 11738""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P20807 uniprotkb:Q969Y2 - - "intact:""CCSB ORF ID: 8876""(author assigned name)" "intact:""CCSB ORF ID: 5916""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P23141 uniprotkb:Q15125 - - "intact:""CCSB ORF ID: 663""(author assigned name)" "intact:""CCSB ORF ID: 2416""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P24592 uniprotkb:Q6ZYL4 - - "intact:""CCSB ORF ID: 4239""(author assigned name)" "intact:""CCSB ORF ID: 12064""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P24592 uniprotkb:Q86WT6 - - "intact:""CCSB ORF ID: 4239""(author assigned name)" "intact:""CCSB ORF ID: 9383""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P27449 uniprotkb:Q13651 - - "intact:""CCSB ORF ID: 4781""(author assigned name)" "intact:""CCSB ORF ID: 9496""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P27449 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 4781""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P27449 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 4781""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P27449 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 4781""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P27449 uniprotkb:Q9NR28 - - "intact:""CCSB ORF ID: 4781""(author assigned name)" "intact:""CCSB ORF ID: 7038""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P27449 uniprotkb:Q9P0T7 - - "intact:""CCSB ORF ID: 4781""(author assigned name)" "intact:""CCSB ORF ID: 3553""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P27449 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 4781""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P28069 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 100016074""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P30301 uniprotkb:P60508 - - "intact:""CCSB ORF ID: 54230""(author assigned name)" "intact:""CCSB ORF ID: 14525""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P30301 uniprotkb:Q7Z4F1 - - "intact:""CCSB ORF ID: 54230""(author assigned name)" "intact:""CCSB ORF ID: 53882""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P30301 uniprotkb:Q86WK6 - - "intact:""CCSB ORF ID: 54230""(author assigned name)" "intact:""CCSB ORF ID: 11362""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P30301 uniprotkb:Q96CE8 - - "intact:""CCSB ORF ID: 54230""(author assigned name)" "intact:""CCSB ORF ID: 7408""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P30301 uniprotkb:Q9NR31 - - "intact:""CCSB ORF ID: 54230""(author assigned name)" "intact:""CCSB ORF ID: 4040""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P30301 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 54230""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P30626 uniprotkb:Q9HBE1 - - "intact:""CCSB ORF ID: 6460""(author assigned name)" "intact:""CCSB ORF ID: 12624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P31431 uniprotkb:Q12999 - - "intact:""CCSB ORF ID: 12920""(author assigned name)" "intact:""CCSB ORF ID: 6427""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P32320 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 11943""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P32969 uniprotkb:Q8N9E0 - - "intact:""CCSB ORF ID: 4725""(author assigned name)" "intact:""CCSB ORF ID: 53675""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P35270 uniprotkb:Q92935 - - "intact:""CCSB ORF ID: 9431""(author assigned name)" "intact:""CCSB ORF ID: 12390""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P35270 uniprotkb:Q9NW38 - - "intact:""CCSB ORF ID: 9431""(author assigned name)" "intact:""CCSB ORF ID: 11743""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P36941 uniprotkb:Q08426 - - "intact:""CCSB ORF ID: 13034""(author assigned name)" "intact:""CCSB ORF ID: 52993""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P37235 uniprotkb:Q9NWW9 - - "intact:""CCSB ORF ID: 730""(author assigned name)" "intact:""CCSB ORF ID: 100016111""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P40937 uniprotkb:Q15669 - - "intact:""CCSB ORF ID: 3772""(author assigned name)" "intact:""CCSB ORF ID: 7312""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P40937 uniprotkb:Q6NVV7 - - "intact:""CCSB ORF ID: 3772""(author assigned name)" "intact:""CCSB ORF ID: 14501""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P40937 uniprotkb:Q86SG2 - - "intact:""CCSB ORF ID: 3772""(author assigned name)" "intact:""CCSB ORF ID: 52849""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P40937 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 3772""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P40937 uniprotkb:Q9H2G9 - - "intact:""CCSB ORF ID: 3772""(author assigned name)" "intact:""CCSB ORF ID: 13067""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P40937 uniprotkb:Q9HAF1 - - "intact:""CCSB ORF ID: 3772""(author assigned name)" "intact:""CCSB ORF ID: 7537""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P41181 uniprotkb:Q01453 - - "intact:""CCSB ORF ID: 11089""(author assigned name)" "intact:""CCSB ORF ID: 7323""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P41181 uniprotkb:Q6ZT21 - - "intact:""CCSB ORF ID: 11089""(author assigned name)" "intact:""CCSB ORF ID: 70706""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P41181 uniprotkb:Q8IXM6 - - "intact:""CCSB ORF ID: 11089""(author assigned name)" "intact:""CCSB ORF ID: 11259""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P41181 uniprotkb:Q8WWP7 - - "intact:""CCSB ORF ID: 11089""(author assigned name)" "intact:""CCSB ORF ID: 11373""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P41181 uniprotkb:Q92520 - - "intact:""CCSB ORF ID: 11089""(author assigned name)" "intact:""CCSB ORF ID: 11126""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P41181 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 11089""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P41181 uniprotkb:Q9NVC3 - - "intact:""CCSB ORF ID: 11089""(author assigned name)" "intact:""CCSB ORF ID: 3619""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P41181 uniprotkb:Q9P0S3 - - "intact:""CCSB ORF ID: 11089""(author assigned name)" "intact:""CCSB ORF ID: 5492""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P41240 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 71469""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P45381 uniprotkb:Q96HD9 - - "intact:""CCSB ORF ID: 8459""(author assigned name)" "intact:""CCSB ORF ID: 2837""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P47929 uniprotkb:Q15750 - - "intact:""CCSB ORF ID: 71252""(author assigned name)" "intact:""CCSB ORF ID: 11706""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P47929 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 71252""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P49720 uniprotkb:Q9NW38 - - "intact:""CCSB ORF ID: 6012""(author assigned name)" "intact:""CCSB ORF ID: 11743""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P49910 uniprotkb:P57086 - - "intact:""CCSB ORF ID: 1549""(author assigned name)" "intact:""CCSB ORF ID: 3585""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P49910 uniprotkb:Q6NX45 - - "intact:""CCSB ORF ID: 1549""(author assigned name)" "intact:""CCSB ORF ID: 14269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P50479 uniprotkb:P61244 - - "intact:""CCSB ORF ID: 7528""(author assigned name)" "intact:""CCSB ORF ID: 4384""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P50479 uniprotkb:Q53S33 - - "intact:""CCSB ORF ID: 7528""(author assigned name)" "intact:""CCSB ORF ID: 100015575""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P50479 uniprotkb:Q5SQP8 - - "intact:""CCSB ORF ID: 7528""(author assigned name)" "intact:""CCSB ORF ID: 10493""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P50479 uniprotkb:Q7Z7K0 - - "intact:""CCSB ORF ID: 7528""(author assigned name)" "intact:""CCSB ORF ID: 11909""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P50479 uniprotkb:Q86Y33 - - "intact:""CCSB ORF ID: 7528""(author assigned name)" "intact:""CCSB ORF ID: 9640""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:P61421 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 5430""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:Q15669 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 7312""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:Q6NVV7 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 14501""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:Q8N1W2 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 54567""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:Q8TF47 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 70794""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:Q8WXK3 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 7122""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:Q96LZ2 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 52806""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:Q9H668 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 5868""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:Q9H7B4 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 13232""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51687 uniprotkb:Q9NZ72 - - "intact:""CCSB ORF ID: 71191""(author assigned name)" "intact:""CCSB ORF ID: 6710""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q5H9K5 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 10568""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q5HY54 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 9124""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q7Z402 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 11548""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q86VK4 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 11738""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q86XT2 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 12213""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q86Y33 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 9640""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q8TAP9 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 12984""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q8TCE9 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 13142""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q96PF1 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 100015481""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q99633 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 961""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51692 uniprotkb:Q9Y242 - - "intact:""CCSB ORF ID: 12900""(author assigned name)" "intact:""CCSB ORF ID: 6776""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51793 uniprotkb:Q8WTS1 - - "intact:""CCSB ORF ID: 54632""(author assigned name)" "intact:""CCSB ORF ID: 286""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51946 uniprotkb:Q15669 - - "intact:""CCSB ORF ID: 5564""(author assigned name)" "intact:""CCSB ORF ID: 7312""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P51946 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 5564""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P52741 uniprotkb:P55081 - - "intact:""CCSB ORF ID: 53541""(author assigned name)" "intact:""CCSB ORF ID: 11817""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P52757 uniprotkb:Q16718 - - "intact:""CCSB ORF ID: 72004""(author assigned name)" "intact:""CCSB ORF ID: 1803""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P52815 uniprotkb:Q00G26 - - "intact:""CCSB ORF ID: 4682""(author assigned name)" "intact:""CCSB ORF ID: 56140""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P52815 uniprotkb:Q12805 - - "intact:""CCSB ORF ID: 4682""(author assigned name)" "intact:""CCSB ORF ID: 7147""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P52815 uniprotkb:Q9UBU8 - - "intact:""CCSB ORF ID: 4682""(author assigned name)" "intact:""CCSB ORF ID: 4430""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P54274 uniprotkb:Q7L804 - - "intact:""CCSB ORF ID: 13182""(author assigned name)" "intact:""CCSB ORF ID: 71649""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P54274 uniprotkb:Q8IVT2 - - "intact:""CCSB ORF ID: 13182""(author assigned name)" "intact:""CCSB ORF ID: 11067""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P54274 uniprotkb:Q9NQ75 - - "intact:""CCSB ORF ID: 13182""(author assigned name)" "intact:""CCSB ORF ID: 8369""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P55081 uniprotkb:Q15695 - - "intact:""CCSB ORF ID: 11817""(author assigned name)" "intact:""CCSB ORF ID: 53877""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P55081 uniprotkb:Q5W5X9 - - "intact:""CCSB ORF ID: 11817""(author assigned name)" "intact:""CCSB ORF ID: 7605""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P55081 uniprotkb:Q96BK5 - - "intact:""CCSB ORF ID: 11817""(author assigned name)" "intact:""CCSB ORF ID: 790""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P55081 uniprotkb:Q9H8W4 - - "intact:""CCSB ORF ID: 11817""(author assigned name)" "intact:""CCSB ORF ID: 6953""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P55344 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 13840""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P55344 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 13840""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P56747 uniprotkb:Q01453 - - "intact:""CCSB ORF ID: 4461""(author assigned name)" "intact:""CCSB ORF ID: 7323""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P56747 uniprotkb:Q8IWU4 - - "intact:""CCSB ORF ID: 4461""(author assigned name)" "intact:""CCSB ORF ID: 54579""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P57086 uniprotkb:Q53GI3 - - "intact:""CCSB ORF ID: 3585""(author assigned name)" "intact:""CCSB ORF ID: 11750""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P57086 uniprotkb:Q9H4T2 - - "intact:""CCSB ORF ID: 3585""(author assigned name)" "intact:""CCSB ORF ID: 4224""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P57735 uniprotkb:Q7L804 - - "intact:""CCSB ORF ID: 6600""(author assigned name)" "intact:""CCSB ORF ID: 71649""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q00G26 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 56140""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q12765 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 10369""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q16512 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 10163""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q5HY54 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 9124""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q7Z3B4 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 6292""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q86VK4 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 11738""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q86XT2 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 12213""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q8N668 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 13160""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q8TAP9 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 12984""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q8TAU3 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 8400""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q92673 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 70242""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q9BWW8 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 11240""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q9HBE1 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 12624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P59942 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 70504""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60201 uniprotkb:Q13491 - - "intact:""CCSB ORF ID: 4062""(author assigned name)" "intact:""CCSB ORF ID: 11465""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60201 uniprotkb:Q5VZY2 - - "intact:""CCSB ORF ID: 4062""(author assigned name)" "intact:""CCSB ORF ID: 55122""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60508 uniprotkb:Q01453 - - "intact:""CCSB ORF ID: 14525""(author assigned name)" "intact:""CCSB ORF ID: 7323""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60508 uniprotkb:Q06432 - - "intact:""CCSB ORF ID: 14525""(author assigned name)" "intact:""CCSB ORF ID: 53774""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60508 uniprotkb:Q08426 - - "intact:""CCSB ORF ID: 14525""(author assigned name)" "intact:""CCSB ORF ID: 52993""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60508 uniprotkb:Q16853 - - "intact:""CCSB ORF ID: 14525""(author assigned name)" "intact:""CCSB ORF ID: 11637""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60508 uniprotkb:Q8IWU4 - - "intact:""CCSB ORF ID: 14525""(author assigned name)" "intact:""CCSB ORF ID: 54579""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60508 uniprotkb:Q8WWP7 - - "intact:""CCSB ORF ID: 14525""(author assigned name)" "intact:""CCSB ORF ID: 11373""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60508 uniprotkb:Q92520 - - "intact:""CCSB ORF ID: 14525""(author assigned name)" "intact:""CCSB ORF ID: 11126""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60508 uniprotkb:Q99665 - - "intact:""CCSB ORF ID: 14525""(author assigned name)" "intact:""CCSB ORF ID: 71843""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60508 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 14525""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60508 uniprotkb:Q9NVC3 - - "intact:""CCSB ORF ID: 14525""(author assigned name)" "intact:""CCSB ORF ID: 3619""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60660 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 5974""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60763 uniprotkb:Q9BYG5 - - "intact:""CCSB ORF ID: 6488""(author assigned name)" "intact:""CCSB ORF ID: 10823""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60891 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 3731""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P60953 uniprotkb:Q9BYG5 - - "intact:""CCSB ORF ID: 399""(author assigned name)" "intact:""CCSB ORF ID: 10823""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P61421 uniprotkb:Q9HBE1 - - "intact:""CCSB ORF ID: 5430""(author assigned name)" "intact:""CCSB ORF ID: 12624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P62140 uniprotkb:Q86WC6 - - "intact:""CCSB ORF ID: 4085""(author assigned name)" "intact:""CCSB ORF ID: 71980""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P62140 uniprotkb:Q9H788 - - "intact:""CCSB ORF ID: 4085""(author assigned name)" "intact:""CCSB ORF ID: 55307""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P63146 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 5728""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P68400 uniprotkb:Q8N9E0 - - "intact:""CCSB ORF ID: 6699""(author assigned name)" "intact:""CCSB ORF ID: 53675""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P78329 uniprotkb:Q03395 - - "intact:""CCSB ORF ID: 70423""(author assigned name)" "intact:""CCSB ORF ID: 2804""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P78329 uniprotkb:Q12999 - - "intact:""CCSB ORF ID: 70423""(author assigned name)" "intact:""CCSB ORF ID: 6427""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P78329 uniprotkb:Q96MV8 - - "intact:""CCSB ORF ID: 70423""(author assigned name)" "intact:""CCSB ORF ID: 52707""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P78329 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 70423""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P78358 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 54699""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P78358 uniprotkb:Q9NP66 - - "intact:""CCSB ORF ID: 54699""(author assigned name)" "intact:""CCSB ORF ID: 193""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P78424 uniprotkb:Q6NVV7 - - "intact:""CCSB ORF ID: 100016215""(author assigned name)" "intact:""CCSB ORF ID: 14501""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P78424 uniprotkb:X6R3D1 - - "intact:""CCSB ORF ID: 100016215""(author assigned name)" "intact:""CCSB ORF ID: 10715""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P84101 uniprotkb:Q15365 - - "intact:""CCSB ORF ID: 724""(author assigned name)" "intact:""CCSB ORF ID: 10250""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:P84101 uniprotkb:Q9HBE1 - - "intact:""CCSB ORF ID: 724""(author assigned name)" "intact:""CCSB ORF ID: 12624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q00G26 uniprotkb:Q8WTS1 - - "intact:""CCSB ORF ID: 56140""(author assigned name)" "intact:""CCSB ORF ID: 286""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q00G26 uniprotkb:Q8WXK3 - - "intact:""CCSB ORF ID: 56140""(author assigned name)" "intact:""CCSB ORF ID: 7122""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q00G26 uniprotkb:Q9BQD7 - - "intact:""CCSB ORF ID: 56140""(author assigned name)" "intact:""CCSB ORF ID: 3348""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q00G26 uniprotkb:Q9UBK9 - - "intact:""CCSB ORF ID: 56140""(author assigned name)" "intact:""CCSB ORF ID: 3521""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q01453 uniprotkb:Q96CE8 - - "intact:""CCSB ORF ID: 7323""(author assigned name)" "intact:""CCSB ORF ID: 7408""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q01453 uniprotkb:Q96HE8 - - "intact:""CCSB ORF ID: 7323""(author assigned name)" "intact:""CCSB ORF ID: 2831""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q01453 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 7323""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q01453 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 7323""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q02930 uniprotkb:Q6NVV7 - - "intact:""CCSB ORF ID: 10842""(author assigned name)" "intact:""CCSB ORF ID: 14501""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q02930 uniprotkb:Q9BYS1 - - "intact:""CCSB ORF ID: 10842""(author assigned name)" "intact:""CCSB ORF ID: 13832""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q04323 uniprotkb:Q08426 - - "intact:""CCSB ORF ID: 6778""(author assigned name)" "intact:""CCSB ORF ID: 52993""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q04760 uniprotkb:Q3MIT2 - - "intact:""CCSB ORF ID: 3317""(author assigned name)" "intact:""CCSB ORF ID: 71823""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q05086 uniprotkb:Q6NTF9 - - "intact:""CCSB ORF ID: 6512""(author assigned name)" "intact:""CCSB ORF ID: 4836""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q06432 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 53774""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q06432 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 53774""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q06547 uniprotkb:Q6UXY1 - - "intact:""CCSB ORF ID: 11751""(author assigned name)" "intact:""CCSB ORF ID: 7586""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q08209 uniprotkb:Q9Y5R4 - - "intact:""CCSB ORF ID: 8407""(author assigned name)" "intact:""CCSB ORF ID: 3511""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q08426 uniprotkb:Q15125 - - "intact:""CCSB ORF ID: 52993""(author assigned name)" "intact:""CCSB ORF ID: 2416""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q08426 uniprotkb:Q5JTZ9 - - "intact:""CCSB ORF ID: 52993""(author assigned name)" "intact:""CCSB ORF ID: 56864""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q08426 uniprotkb:Q8WV19 - - "intact:""CCSB ORF ID: 52993""(author assigned name)" "intact:""CCSB ORF ID: 70334""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q08426 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 52993""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q08426 uniprotkb:Q92915 - - "intact:""CCSB ORF ID: 52993""(author assigned name)" "intact:""CCSB ORF ID: 52751""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q08426 uniprotkb:Q9NP66 - - "intact:""CCSB ORF ID: 52993""(author assigned name)" "intact:""CCSB ORF ID: 193""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q08426 uniprotkb:Q9NR28 - - "intact:""CCSB ORF ID: 52993""(author assigned name)" "intact:""CCSB ORF ID: 7038""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q08426 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 52993""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q10570 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 6814""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q12765 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 10369""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q12805 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 7147""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q12874 uniprotkb:Q3KP44 - - "intact:""CCSB ORF ID: 3962""(author assigned name)" "intact:""CCSB ORF ID: 53004""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q12999 uniprotkb:Q13433 - - "intact:""CCSB ORF ID: 6427""(author assigned name)" "intact:""CCSB ORF ID: 11347""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q12999 uniprotkb:Q6ZT21 - - "intact:""CCSB ORF ID: 6427""(author assigned name)" "intact:""CCSB ORF ID: 70706""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q12999 uniprotkb:Q9BRI3 - - "intact:""CCSB ORF ID: 6427""(author assigned name)" "intact:""CCSB ORF ID: 4862""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q12999 uniprotkb:Q9P0S3 - - "intact:""CCSB ORF ID: 6427""(author assigned name)" "intact:""CCSB ORF ID: 5492""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13085 uniprotkb:Q6NTF9 - - "intact:""CCSB ORF ID: 70275""(author assigned name)" "intact:""CCSB ORF ID: 4836""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13085 uniprotkb:Q92915 - - "intact:""CCSB ORF ID: 70275""(author assigned name)" "intact:""CCSB ORF ID: 52751""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13155 uniprotkb:Q8N5A5 - - "intact:""CCSB ORF ID: 343""(author assigned name)" "intact:""CCSB ORF ID: 10101""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13188 uniprotkb:Q9H8W4 - - "intact:""CCSB ORF ID: 2989""(author assigned name)" "intact:""CCSB ORF ID: 6953""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13433 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 11347""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13630 uniprotkb:Q5SYC1 - - "intact:""CCSB ORF ID: 3805""(author assigned name)" "intact:""CCSB ORF ID: 52803""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13651 uniprotkb:Q6Y1H2 - - "intact:""CCSB ORF ID: 9496""(author assigned name)" "intact:""CCSB ORF ID: 10939""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13651 uniprotkb:Q9BRI3 - - "intact:""CCSB ORF ID: 9496""(author assigned name)" "intact:""CCSB ORF ID: 4862""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13651 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 9496""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13895 uniprotkb:Q6NX45 - - "intact:""CCSB ORF ID: 11723""(author assigned name)" "intact:""CCSB ORF ID: 14269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13895 uniprotkb:Q9C0F3 - - "intact:""CCSB ORF ID: 11723""(author assigned name)" "intact:""CCSB ORF ID: 11396""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13895 uniprotkb:Q9HAF1 - - "intact:""CCSB ORF ID: 11723""(author assigned name)" "intact:""CCSB ORF ID: 7537""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q13895 uniprotkb:Q9P0T4 - - "intact:""CCSB ORF ID: 11723""(author assigned name)" "intact:""CCSB ORF ID: 6880""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q14119 uniprotkb:Q8N0X2 - - "intact:""CCSB ORF ID: 100015985""(author assigned name)" "intact:""CCSB ORF ID: 8563""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q14119 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 100015985""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q14240 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 10716""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15038 uniprotkb:Q5VVQ6 - - "intact:""CCSB ORF ID: 3598""(author assigned name)" "intact:""CCSB ORF ID: 70257""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15052 uniprotkb:Q6NX45 - - "intact:""CCSB ORF ID: 11410""(author assigned name)" "intact:""CCSB ORF ID: 14269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15052 uniprotkb:Q9Y2W2 - - "intact:""CCSB ORF ID: 11410""(author assigned name)" "intact:""CCSB ORF ID: 3399""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q5MY95 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 55671""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q6P1K1 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 12380""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q6UWV6 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 11341""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q6UX98 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 10864""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q8IWU4 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 54579""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q8IXM6 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 11259""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q8WWP7 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 11373""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q92843 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 53726""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q96G79 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 5821""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q9BWM7 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 3299""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q9BXJ8 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 11818""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q9NVC3 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 3619""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15125 uniprotkb:Q9Y385 - - "intact:""CCSB ORF ID: 2416""(author assigned name)" "intact:""CCSB ORF ID: 6225""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15223 uniprotkb:Q92520 - - "intact:""CCSB ORF ID: 53609""(author assigned name)" "intact:""CCSB ORF ID: 11126""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15293 uniprotkb:Q86VK4 - - "intact:""CCSB ORF ID: 6932""(author assigned name)" "intact:""CCSB ORF ID: 11738""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15293 uniprotkb:Q969Y2 - - "intact:""CCSB ORF ID: 6932""(author assigned name)" "intact:""CCSB ORF ID: 5916""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15293 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 6932""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q5HY54 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 9124""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q5T7W7 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 9770""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q6PF18 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 10821""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q6ZYL4 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 12064""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q86Y33 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 9640""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q8TAP9 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 12984""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q92673 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 70242""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q96MY7 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 71174""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q96PF1 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 100015481""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q9HBE1 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 12624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q9NQW7 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 4359""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q9P013 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 11254""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15669 uniprotkb:Q9Y242 - - "intact:""CCSB ORF ID: 7312""(author assigned name)" "intact:""CCSB ORF ID: 6776""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q15915 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 70473""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q16204 uniprotkb:Q6NX45 - - "intact:""CCSB ORF ID: 71245""(author assigned name)" "intact:""CCSB ORF ID: 14269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q16204 uniprotkb:Q86SG2 - - "intact:""CCSB ORF ID: 71245""(author assigned name)" "intact:""CCSB ORF ID: 52849""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q16512 uniprotkb:Q3KNR5 - - "intact:""CCSB ORF ID: 10163""(author assigned name)" "intact:""CCSB ORF ID: 53028""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q16512 uniprotkb:Q7Z7F0 - - "intact:""CCSB ORF ID: 10163""(author assigned name)" "intact:""CCSB ORF ID: 8732""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q16512 uniprotkb:Q8NFV4 - - "intact:""CCSB ORF ID: 10163""(author assigned name)" "intact:""CCSB ORF ID: 8808""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q16512 uniprotkb:Q8TF47 - - "intact:""CCSB ORF ID: 10163""(author assigned name)" "intact:""CCSB ORF ID: 70794""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q16512 uniprotkb:Q8WTS1 - - "intact:""CCSB ORF ID: 10163""(author assigned name)" "intact:""CCSB ORF ID: 286""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q16512 uniprotkb:Q9H7B4 - - "intact:""CCSB ORF ID: 10163""(author assigned name)" "intact:""CCSB ORF ID: 13232""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q16853 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 11637""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q32P44 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 71453""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q3KNR5 uniprotkb:Q9BZI1 - - "intact:""CCSB ORF ID: 53028""(author assigned name)" "intact:""CCSB ORF ID: 14805""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q3KNR5 uniprotkb:Q9H257 - - "intact:""CCSB ORF ID: 53028""(author assigned name)" "intact:""CCSB ORF ID: 5439""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q3KNR5 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 53028""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q3KP44 uniprotkb:Q9H257 - - "intact:""CCSB ORF ID: 53004""(author assigned name)" "intact:""CCSB ORF ID: 5439""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q3KP44 uniprotkb:Q9NW38 - - "intact:""CCSB ORF ID: 53004""(author assigned name)" "intact:""CCSB ORF ID: 11743""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q3KP44 uniprotkb:Q9P2M1 - - "intact:""CCSB ORF ID: 53004""(author assigned name)" "intact:""CCSB ORF ID: 70192""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q3KP44 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 53004""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q3KP44 uniprotkb:Q9UMX1 - - "intact:""CCSB ORF ID: 53004""(author assigned name)" "intact:""CCSB ORF ID: 6119""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q3LI76 uniprotkb:Q53HV7 - - "intact:""CCSB ORF ID: 71924""(author assigned name)" "intact:""CCSB ORF ID: 4695""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q3MIT2 uniprotkb:Q9H269 - - "intact:""CCSB ORF ID: 71823""(author assigned name)" "intact:""CCSB ORF ID: 14624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q4LEZ3 uniprotkb:Q9HAF1 - - "intact:""CCSB ORF ID: 72017""(author assigned name)" "intact:""CCSB ORF ID: 7537""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q53GI3 uniprotkb:Q8N5A5 - - "intact:""CCSB ORF ID: 11750""(author assigned name)" "intact:""CCSB ORF ID: 10101""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q53S33 uniprotkb:Q86SX6 - - "intact:""CCSB ORF ID: 100015575""(author assigned name)" "intact:""CCSB ORF ID: 13454""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5GH77 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 10763""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5H9K5 uniprotkb:Q7Z6G8 - - "intact:""CCSB ORF ID: 10568""(author assigned name)" "intact:""CCSB ORF ID: 8665""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5H9K5 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 10568""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5HY54 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 9124""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5HY54 uniprotkb:Q9H8W4 - - "intact:""CCSB ORF ID: 9124""(author assigned name)" "intact:""CCSB ORF ID: 6953""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5JT25 uniprotkb:Q9H8W4 - - "intact:""CCSB ORF ID: 54003""(author assigned name)" "intact:""CCSB ORF ID: 6953""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5MY95 uniprotkb:Q86W33 - - "intact:""CCSB ORF ID: 55671""(author assigned name)" "intact:""CCSB ORF ID: 748""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5MY95 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 55671""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5MY95 uniprotkb:Q8WUU8 - - "intact:""CCSB ORF ID: 55671""(author assigned name)" "intact:""CCSB ORF ID: 6269""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5MY95 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 55671""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5MY95 uniprotkb:Q9NP94 - - "intact:""CCSB ORF ID: 55671""(author assigned name)" "intact:""CCSB ORF ID: 52686""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5MY95 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 55671""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5PSV4 uniprotkb:Q5W5X9 - - "intact:""CCSB ORF ID: 4860""(author assigned name)" "intact:""CCSB ORF ID: 7605""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5PSV4 uniprotkb:Q86SG2 - - "intact:""CCSB ORF ID: 4860""(author assigned name)" "intact:""CCSB ORF ID: 52849""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5PSV4 uniprotkb:Q9HAF1 - - "intact:""CCSB ORF ID: 4860""(author assigned name)" "intact:""CCSB ORF ID: 7537""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5SQP8 uniprotkb:Q6NVV7 - - "intact:""CCSB ORF ID: 10493""(author assigned name)" "intact:""CCSB ORF ID: 14501""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5SQP8 uniprotkb:Q9NP66 - - "intact:""CCSB ORF ID: 10493""(author assigned name)" "intact:""CCSB ORF ID: 193""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5SYC1 uniprotkb:Q9GZM8 - - "intact:""CCSB ORF ID: 52803""(author assigned name)" "intact:""CCSB ORF ID: 1734""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5T0L3 uniprotkb:Q6PF18 - - "intact:""CCSB ORF ID: 1921""(author assigned name)" "intact:""CCSB ORF ID: 10821""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5T0L3 uniprotkb:Q8TAP9 - - "intact:""CCSB ORF ID: 1921""(author assigned name)" "intact:""CCSB ORF ID: 12984""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5T752 uniprotkb:Q6L8G9 - - "intact:""CCSB ORF ID: 100064144""(author assigned name)" "intact:""CCSB ORF ID: 54665""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5T7P8 uniprotkb:Q8WTP8 - - "intact:""CCSB ORF ID: 11334""(author assigned name)" "intact:""CCSB ORF ID: 3954""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5TA76 uniprotkb:Q9UKJ5 - - "intact:""CCSB ORF ID: 100016209""(author assigned name)" "intact:""CCSB ORF ID: 2645""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5TGY3 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 6545""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5VZY2 uniprotkb:Q9NR31 - - "intact:""CCSB ORF ID: 55122""(author assigned name)" "intact:""CCSB ORF ID: 4040""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5VZY2 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 55122""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q6X4W1 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 71415""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q7Z402 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 11548""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q86VK4 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 11738""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q8NEH6 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 1768""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q8TAU3 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 8400""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q96MY7 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 71174""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q96PF1 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 100015481""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q99633 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 961""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q9H0I2 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 4798""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q9HBI5 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 12871""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q9NW38 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 11743""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q9NZV7 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 71894""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q5W5X9 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 7605""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q63HM1 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 55073""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q68EA5 uniprotkb:Q96ER3 - - "intact:""CCSB ORF ID: 8202""(author assigned name)" "intact:""CCSB ORF ID: 1102""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q68EA5 uniprotkb:Q9GZM8 - - "intact:""CCSB ORF ID: 8202""(author assigned name)" "intact:""CCSB ORF ID: 1734""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6AZY7 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 10769""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6IAN0 uniprotkb:Q9NR28 - - "intact:""CCSB ORF ID: 3066""(author assigned name)" "intact:""CCSB ORF ID: 7038""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NT46 uniprotkb:Q96IK5 - - "intact:""CCSB ORF ID: 13787""(author assigned name)" "intact:""CCSB ORF ID: 4516""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NTF9 uniprotkb:Q8IXM6 - - "intact:""CCSB ORF ID: 4836""(author assigned name)" "intact:""CCSB ORF ID: 11259""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NTF9 uniprotkb:Q92843 - - "intact:""CCSB ORF ID: 4836""(author assigned name)" "intact:""CCSB ORF ID: 53726""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NTF9 uniprotkb:Q9HB07 - - "intact:""CCSB ORF ID: 4836""(author assigned name)" "intact:""CCSB ORF ID: 11748""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NTF9 uniprotkb:Q9NVM1 - - "intact:""CCSB ORF ID: 4836""(author assigned name)" "intact:""CCSB ORF ID: 4840""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NTF9 uniprotkb:Q9NZE8 - - "intact:""CCSB ORF ID: 4836""(author assigned name)" "intact:""CCSB ORF ID: 13006""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NTF9 uniprotkb:Q9ULP0 - - "intact:""CCSB ORF ID: 4836""(author assigned name)" "intact:""CCSB ORF ID: 6895""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NVV7 uniprotkb:Q7Z6I5 - - "intact:""CCSB ORF ID: 14501""(author assigned name)" "intact:""CCSB ORF ID: 54438""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NVV7 uniprotkb:Q8N878 - - "intact:""CCSB ORF ID: 14501""(author assigned name)" "intact:""CCSB ORF ID: 70591""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NVV7 uniprotkb:Q8TAP9 - - "intact:""CCSB ORF ID: 14501""(author assigned name)" "intact:""CCSB ORF ID: 12984""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NVV7 uniprotkb:Q96NS1 - - "intact:""CCSB ORF ID: 14501""(author assigned name)" "intact:""CCSB ORF ID: 72008""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NVV7 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 14501""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q6X4W1 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 71415""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q86VV4 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 71095""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q8IVT2 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 11067""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q8TD31 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 53053""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q96NJ6 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 53255""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q96PF1 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 100015481""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q9H0I2 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 4798""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q9H257 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 5439""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q9NR81 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 55633""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q9NW38 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 11743""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q9NZV7 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 71894""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6NX45 uniprotkb:Q9UBL6 - - "intact:""CCSB ORF ID: 14269""(author assigned name)" "intact:""CCSB ORF ID: 8479""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6P5T0 uniprotkb:Q6ZSS7 - - "intact:""CCSB ORF ID: 14815""(author assigned name)" "intact:""CCSB ORF ID: 11707""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6PEY1 uniprotkb:Q9BXJ8 - - "intact:""CCSB ORF ID: 10773""(author assigned name)" "intact:""CCSB ORF ID: 11818""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6PF18 uniprotkb:Q9BQD7 - - "intact:""CCSB ORF ID: 10821""(author assigned name)" "intact:""CCSB ORF ID: 3348""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6PF18 uniprotkb:Q9NZL3 - - "intact:""CCSB ORF ID: 10821""(author assigned name)" "intact:""CCSB ORF ID: 11777""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6PIW4 uniprotkb:Q86VV4 - - "intact:""CCSB ORF ID: 11784""(author assigned name)" "intact:""CCSB ORF ID: 71095""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6PIW4 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 11784""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6PKC3 uniprotkb:Q99633 - - "intact:""CCSB ORF ID: 8611""(author assigned name)" "intact:""CCSB ORF ID: 961""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6TGC4 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 100015595""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6UWV6 uniprotkb:Q8N690 - - "intact:""CCSB ORF ID: 11341""(author assigned name)" "intact:""CCSB ORF ID: 14809""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6UWV6 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 11341""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6UX98 uniprotkb:Q8NBQ5 - - "intact:""CCSB ORF ID: 10864""(author assigned name)" "intact:""CCSB ORF ID: 7376""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6UX98 uniprotkb:Q9H8W4 - - "intact:""CCSB ORF ID: 10864""(author assigned name)" "intact:""CCSB ORF ID: 6953""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6UXY1 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 7586""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6UXY1 uniprotkb:Q9Y5R4 - - "intact:""CCSB ORF ID: 7586""(author assigned name)" "intact:""CCSB ORF ID: 3511""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6Y1H2 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 10939""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6ZSS7 uniprotkb:Q7Z7N9 - - "intact:""CCSB ORF ID: 11707""(author assigned name)" "intact:""CCSB ORF ID: 13641""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6ZSS7 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 11707""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6ZT21 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 70706""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6ZT21 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 70706""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6ZT21 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 70706""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6ZUS5 uniprotkb:Q96A65 - - "intact:""CCSB ORF ID: 10997""(author assigned name)" "intact:""CCSB ORF ID: 13171""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6ZUS5 uniprotkb:Q9BUN5 - - "intact:""CCSB ORF ID: 10997""(author assigned name)" "intact:""CCSB ORF ID: 8003""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6ZUS5 uniprotkb:Q9H269 - - "intact:""CCSB ORF ID: 10997""(author assigned name)" "intact:""CCSB ORF ID: 14624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q6ZYL4 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 12064""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z3B4 uniprotkb:Q86YM7 - - "intact:""CCSB ORF ID: 6292""(author assigned name)" "intact:""CCSB ORF ID: 742""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z3K3 uniprotkb:Q8N1W2 - - "intact:""CCSB ORF ID: 10876""(author assigned name)" "intact:""CCSB ORF ID: 54567""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z3K3 uniprotkb:Q8WXK3 - - "intact:""CCSB ORF ID: 10876""(author assigned name)" "intact:""CCSB ORF ID: 7122""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z402 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 11548""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z402 uniprotkb:Q9H7B4 - - "intact:""CCSB ORF ID: 11548""(author assigned name)" "intact:""CCSB ORF ID: 13232""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z402 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 11548""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z4F1 uniprotkb:Q92843 - - "intact:""CCSB ORF ID: 53882""(author assigned name)" "intact:""CCSB ORF ID: 53726""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z5S9 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 11526""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z769 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 11130""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z769 uniprotkb:Q96HE8 - - "intact:""CCSB ORF ID: 11130""(author assigned name)" "intact:""CCSB ORF ID: 2831""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z769 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 11130""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z7F0 uniprotkb:Q9BWW8 - - "intact:""CCSB ORF ID: 8732""(author assigned name)" "intact:""CCSB ORF ID: 11240""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z7N9 uniprotkb:Q86YW7 - - "intact:""CCSB ORF ID: 13641""(author assigned name)" "intact:""CCSB ORF ID: 72104""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z7N9 uniprotkb:Q92843 - - "intact:""CCSB ORF ID: 13641""(author assigned name)" "intact:""CCSB ORF ID: 53726""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z7N9 uniprotkb:Q9BQE5 - - "intact:""CCSB ORF ID: 13641""(author assigned name)" "intact:""CCSB ORF ID: 4309""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q7Z7N9 uniprotkb:Q9Y385 - - "intact:""CCSB ORF ID: 13641""(author assigned name)" "intact:""CCSB ORF ID: 6225""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86SG2 uniprotkb:Q96MY7 - - "intact:""CCSB ORF ID: 52849""(author assigned name)" "intact:""CCSB ORF ID: 71174""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86SG2 uniprotkb:Q9H0I2 - - "intact:""CCSB ORF ID: 52849""(author assigned name)" "intact:""CCSB ORF ID: 4798""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86SG2 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 52849""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86SX6 uniprotkb:Q9H4T2 - - "intact:""CCSB ORF ID: 13454""(author assigned name)" "intact:""CCSB ORF ID: 4224""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86VK4 uniprotkb:Q8N5Z5 - - "intact:""CCSB ORF ID: 11738""(author assigned name)" "intact:""CCSB ORF ID: 2152""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86VK4 uniprotkb:Q8NDH6 - - "intact:""CCSB ORF ID: 11738""(author assigned name)" "intact:""CCSB ORF ID: 8637""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86VK4 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 11738""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86VK4 uniprotkb:Q9H2G9 - - "intact:""CCSB ORF ID: 11738""(author assigned name)" "intact:""CCSB ORF ID: 13067""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86VK4 uniprotkb:Q9NZ72 - - "intact:""CCSB ORF ID: 11738""(author assigned name)" "intact:""CCSB ORF ID: 6710""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86WC6 uniprotkb:Q96EY5 - - "intact:""CCSB ORF ID: 71980""(author assigned name)" "intact:""CCSB ORF ID: 7042""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86WK6 uniprotkb:Q8IVJ1 - - "intact:""CCSB ORF ID: 11362""(author assigned name)" "intact:""CCSB ORF ID: 70731""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86WK6 uniprotkb:Q92520 - - "intact:""CCSB ORF ID: 11362""(author assigned name)" "intact:""CCSB ORF ID: 11126""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86WK6 uniprotkb:Q96JW4 - - "intact:""CCSB ORF ID: 11362""(author assigned name)" "intact:""CCSB ORF ID: 10034""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86WK6 uniprotkb:Q9H2H9 - - "intact:""CCSB ORF ID: 11362""(author assigned name)" "intact:""CCSB ORF ID: 3013""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86WK6 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 11362""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86WK6 uniprotkb:Q9NVC3 - - "intact:""CCSB ORF ID: 11362""(author assigned name)" "intact:""CCSB ORF ID: 3619""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86WT6 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 9383""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86WT6 uniprotkb:Q9HAF1 - - "intact:""CCSB ORF ID: 9383""(author assigned name)" "intact:""CCSB ORF ID: 7537""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86X45 uniprotkb:Q8N456 - - "intact:""CCSB ORF ID: 11451""(author assigned name)" "intact:""CCSB ORF ID: 8349""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86XE0 uniprotkb:Q9NP66 - - "intact:""CCSB ORF ID: 10717""(author assigned name)" "intact:""CCSB ORF ID: 193""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86XT2 uniprotkb:Q96A65 - - "intact:""CCSB ORF ID: 12213""(author assigned name)" "intact:""CCSB ORF ID: 13171""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86XT2 uniprotkb:Q9UKJ5 - - "intact:""CCSB ORF ID: 12213""(author assigned name)" "intact:""CCSB ORF ID: 2645""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86Y33 uniprotkb:Q9NP66 - - "intact:""CCSB ORF ID: 9640""(author assigned name)" "intact:""CCSB ORF ID: 193""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86YP4 uniprotkb:Q8N5A5 - - "intact:""CCSB ORF ID: 6923""(author assigned name)" "intact:""CCSB ORF ID: 10101""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q86YW7 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 72104""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IVJ1 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 70731""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IWR0 uniprotkb:Q9UBU8 - - "intact:""CCSB ORF ID: 9068""(author assigned name)" "intact:""CCSB ORF ID: 4430""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IWU4 uniprotkb:Q8NBQ5 - - "intact:""CCSB ORF ID: 54579""(author assigned name)" "intact:""CCSB ORF ID: 7376""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IWU4 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 54579""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IWU4 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 54579""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IWU4 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 54579""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IWU4 uniprotkb:Q9NP94 - - "intact:""CCSB ORF ID: 54579""(author assigned name)" "intact:""CCSB ORF ID: 52686""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IWU4 uniprotkb:Q9NR31 - - "intact:""CCSB ORF ID: 54579""(author assigned name)" "intact:""CCSB ORF ID: 4040""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IWU4 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 54579""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IXM6 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 11259""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IXM6 uniprotkb:Q9H2J7 - - "intact:""CCSB ORF ID: 11259""(author assigned name)" "intact:""CCSB ORF ID: 14524""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8IXM6 uniprotkb:Q9NP94 - - "intact:""CCSB ORF ID: 11259""(author assigned name)" "intact:""CCSB ORF ID: 52686""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N0X2 uniprotkb:Q96LK0 - - "intact:""CCSB ORF ID: 8563""(author assigned name)" "intact:""CCSB ORF ID: 5119""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N0X2 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 8563""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N0Y2 uniprotkb:Q8N668 - - "intact:""CCSB ORF ID: 7817""(author assigned name)" "intact:""CCSB ORF ID: 13160""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N1G1 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 53618""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N456 uniprotkb:Q96LI5 - - "intact:""CCSB ORF ID: 8349""(author assigned name)" "intact:""CCSB ORF ID: 100016034""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N543 uniprotkb:Q96EK4 - - "intact:""CCSB ORF ID: 12744""(author assigned name)" "intact:""CCSB ORF ID: 7141""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N5A5 uniprotkb:Q8NEH6 - - "intact:""CCSB ORF ID: 10101""(author assigned name)" "intact:""CCSB ORF ID: 1768""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N5A5 uniprotkb:Q9H257 - - "intact:""CCSB ORF ID: 10101""(author assigned name)" "intact:""CCSB ORF ID: 5439""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N5A5 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 10101""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N5A5 uniprotkb:Q9Y242 - - "intact:""CCSB ORF ID: 10101""(author assigned name)" "intact:""CCSB ORF ID: 6776""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N5Z5 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 2152""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8N9E0 uniprotkb:Q9P0M6 - - "intact:""CCSB ORF ID: 53675""(author assigned name)" "intact:""CCSB ORF ID: 235""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NBQ5 uniprotkb:Q8WWP7 - - "intact:""CCSB ORF ID: 7376""(author assigned name)" "intact:""CCSB ORF ID: 11373""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NBQ5 uniprotkb:Q9BWM7 - - "intact:""CCSB ORF ID: 7376""(author assigned name)" "intact:""CCSB ORF ID: 3299""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NBQ5 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 7376""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NBQ5 uniprotkb:Q9H9B4 - - "intact:""CCSB ORF ID: 7376""(author assigned name)" "intact:""CCSB ORF ID: 11782""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NCS4 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 13197""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NCS4 uniprotkb:Q8WWF3 - - "intact:""CCSB ORF ID: 13197""(author assigned name)" "intact:""CCSB ORF ID: 1617""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NCS4 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 13197""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NDH6 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 8637""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NFK1 uniprotkb:Q8TBE3 - - "intact:""CCSB ORF ID: 100015563""(author assigned name)" "intact:""CCSB ORF ID: 1172""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NHY3 uniprotkb:Q96D15 - - "intact:""CCSB ORF ID: 100015630""(author assigned name)" "intact:""CCSB ORF ID: 3097""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8NHY3 uniprotkb:Q96GA3 - - "intact:""CCSB ORF ID: 100015630""(author assigned name)" "intact:""CCSB ORF ID: 6593""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TAP9 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 12984""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TAP9 uniprotkb:Q9BQD7 - - "intact:""CCSB ORF ID: 12984""(author assigned name)" "intact:""CCSB ORF ID: 3348""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TAP9 uniprotkb:Q9H269 - - "intact:""CCSB ORF ID: 12984""(author assigned name)" "intact:""CCSB ORF ID: 14624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TAP9 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 12984""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TAU3 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 8400""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TBE3 uniprotkb:Q92520 - - "intact:""CCSB ORF ID: 1172""(author assigned name)" "intact:""CCSB ORF ID: 11126""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TBE3 uniprotkb:Q92935 - - "intact:""CCSB ORF ID: 1172""(author assigned name)" "intact:""CCSB ORF ID: 12390""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TBE3 uniprotkb:Q96S97 - - "intact:""CCSB ORF ID: 1172""(author assigned name)" "intact:""CCSB ORF ID: 7002""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TBE3 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 1172""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TBK6 uniprotkb:Q9NP66 - - "intact:""CCSB ORF ID: 12844""(author assigned name)" "intact:""CCSB ORF ID: 193""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TCE9 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 13142""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TCT0 uniprotkb:Q9H8W4 - - "intact:""CCSB ORF ID: 56366""(author assigned name)" "intact:""CCSB ORF ID: 6953""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TD06 uniprotkb:Q9H1M0 - - "intact:""CCSB ORF ID: 13286""(author assigned name)" "intact:""CCSB ORF ID: 7536""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TDX7 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 100016041""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TEW6 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 4240""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TF47 uniprotkb:Q9H0I2 - - "intact:""CCSB ORF ID: 70794""(author assigned name)" "intact:""CCSB ORF ID: 4798""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8TF47 uniprotkb:Q9Y2W6 - - "intact:""CCSB ORF ID: 70794""(author assigned name)" "intact:""CCSB ORF ID: 9967""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WTS1 uniprotkb:Q9NQG6 - - "intact:""CCSB ORF ID: 286""(author assigned name)" "intact:""CCSB ORF ID: 5294""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WTX7 uniprotkb:Q96GY0 - - "intact:""CCSB ORF ID: 7878""(author assigned name)" "intact:""CCSB ORF ID: 2852""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WUU8 uniprotkb:Q9BXJ8 - - "intact:""CCSB ORF ID: 6269""(author assigned name)" "intact:""CCSB ORF ID: 11818""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WV19 uniprotkb:Q9BW92 - - "intact:""CCSB ORF ID: 70334""(author assigned name)" "intact:""CCSB ORF ID: 6795""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WV19 uniprotkb:Q9HB07 - - "intact:""CCSB ORF ID: 70334""(author assigned name)" "intact:""CCSB ORF ID: 11748""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WV19 uniprotkb:Q9ULP0 - - "intact:""CCSB ORF ID: 70334""(author assigned name)" "intact:""CCSB ORF ID: 6895""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWF3 uniprotkb:Q96G79 - - "intact:""CCSB ORF ID: 1617""(author assigned name)" "intact:""CCSB ORF ID: 5821""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWF3 uniprotkb:Q96JW4 - - "intact:""CCSB ORF ID: 1617""(author assigned name)" "intact:""CCSB ORF ID: 10034""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWF3 uniprotkb:Q9BRI3 - - "intact:""CCSB ORF ID: 1617""(author assigned name)" "intact:""CCSB ORF ID: 4862""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWF3 uniprotkb:Q9H2H9 - - "intact:""CCSB ORF ID: 1617""(author assigned name)" "intact:""CCSB ORF ID: 3013""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWF3 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 1617""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWF3 uniprotkb:Q9NVC3 - - "intact:""CCSB ORF ID: 1617""(author assigned name)" "intact:""CCSB ORF ID: 3619""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWF3 uniprotkb:Q9P296 - - "intact:""CCSB ORF ID: 1617""(author assigned name)" "intact:""CCSB ORF ID: 71276""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWP7 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 11373""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWP7 uniprotkb:Q9NR31 - - "intact:""CCSB ORF ID: 11373""(author assigned name)" "intact:""CCSB ORF ID: 4040""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWP7 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 11373""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WWY3 uniprotkb:Q9UMX1 - - "intact:""CCSB ORF ID: 54082""(author assigned name)" "intact:""CCSB ORF ID: 6119""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q8WYQ4 uniprotkb:Q9UBY9 - - "intact:""CCSB ORF ID: 100000239""(author assigned name)" "intact:""CCSB ORF ID: 4955""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92520 uniprotkb:Q96CE8 - - "intact:""CCSB ORF ID: 11126""(author assigned name)" "intact:""CCSB ORF ID: 7408""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92520 uniprotkb:Q99523 - - "intact:""CCSB ORF ID: 11126""(author assigned name)" "intact:""CCSB ORF ID: 100011253""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92520 uniprotkb:Q9NP94 - - "intact:""CCSB ORF ID: 11126""(author assigned name)" "intact:""CCSB ORF ID: 52686""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92520 uniprotkb:Q9NR31 - - "intact:""CCSB ORF ID: 11126""(author assigned name)" "intact:""CCSB ORF ID: 4040""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92520 uniprotkb:Q9UM44 - - "intact:""CCSB ORF ID: 11126""(author assigned name)" "intact:""CCSB ORF ID: 100010310""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92520 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 11126""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92673 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 70242""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92673 uniprotkb:Q9H2G9 - - "intact:""CCSB ORF ID: 70242""(author assigned name)" "intact:""CCSB ORF ID: 13067""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92843 uniprotkb:Q92915 - - "intact:""CCSB ORF ID: 53726""(author assigned name)" "intact:""CCSB ORF ID: 52751""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92843 uniprotkb:Q92934 - - "intact:""CCSB ORF ID: 53726""(author assigned name)" "intact:""CCSB ORF ID: 3706""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92843 uniprotkb:Q96MV8 - - "intact:""CCSB ORF ID: 53726""(author assigned name)" "intact:""CCSB ORF ID: 52707""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92843 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 53726""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92843 uniprotkb:Q9NR31 - - "intact:""CCSB ORF ID: 53726""(author assigned name)" "intact:""CCSB ORF ID: 4040""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92843 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 53726""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92915 uniprotkb:Q9ULE6 - - "intact:""CCSB ORF ID: 52751""(author assigned name)" "intact:""CCSB ORF ID: 70721""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q92935 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 12390""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q969H8 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 6904""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q969U6 uniprotkb:Q9H8W4 - - "intact:""CCSB ORF ID: 6616""(author assigned name)" "intact:""CCSB ORF ID: 6953""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q969Y0 uniprotkb:Q96HE8 - - "intact:""CCSB ORF ID: 6510""(author assigned name)" "intact:""CCSB ORF ID: 2831""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q969Y0 uniprotkb:Q9H2J7 - - "intact:""CCSB ORF ID: 6510""(author assigned name)" "intact:""CCSB ORF ID: 14524""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q969Y2 uniprotkb:Q96D03 - - "intact:""CCSB ORF ID: 5916""(author assigned name)" "intact:""CCSB ORF ID: 3068""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96A65 uniprotkb:Q96MY7 - - "intact:""CCSB ORF ID: 13171""(author assigned name)" "intact:""CCSB ORF ID: 71174""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96A65 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 13171""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96A65 uniprotkb:Q9UJ41 - - "intact:""CCSB ORF ID: 13171""(author assigned name)" "intact:""CCSB ORF ID: 1047""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96A65 uniprotkb:Q9Y5R4 - - "intact:""CCSB ORF ID: 13171""(author assigned name)" "intact:""CCSB ORF ID: 3511""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96CE8 uniprotkb:Q9BRI3 - - "intact:""CCSB ORF ID: 7408""(author assigned name)" "intact:""CCSB ORF ID: 4862""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96CE8 uniprotkb:Q9Y385 - - "intact:""CCSB ORF ID: 7408""(author assigned name)" "intact:""CCSB ORF ID: 6225""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q96G61 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 6249""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q96HD9 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 2837""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q96KB5 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 6493""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q96LK0 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 5119""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q96MF2 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 4447""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q99633 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 961""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q99697 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 6983""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9BW92 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 6795""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9BZQ8 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 9638""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9GZM8 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 1734""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9H257 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 5439""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9H773 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 2724""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9NQW7 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 4359""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9NR81 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 55633""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9UBL6 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 8479""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9UBU8 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 4430""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9UBY9 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 4955""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9ULP0 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 6895""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9Y242 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 6776""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96D03 uniprotkb:Q9Y263 - - "intact:""CCSB ORF ID: 3068""(author assigned name)" "intact:""CCSB ORF ID: 10102""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96DN5 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 8737""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96ER3 uniprotkb:Q9H8W4 - - "intact:""CCSB ORF ID: 1102""(author assigned name)" "intact:""CCSB ORF ID: 6953""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96G79 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 5821""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96HE8 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 2831""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96HL8 uniprotkb:Q9H0X6 - - "intact:""CCSB ORF ID: 5457""(author assigned name)" "intact:""CCSB ORF ID: 439""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96HL8 uniprotkb:Q9Y2W2 - - "intact:""CCSB ORF ID: 5457""(author assigned name)" "intact:""CCSB ORF ID: 3399""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96HR3 uniprotkb:Q9UJ41 - - "intact:""CCSB ORF ID: 2853""(author assigned name)" "intact:""CCSB ORF ID: 1047""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96HR3 uniprotkb:Q9ULW6 - - "intact:""CCSB ORF ID: 2853""(author assigned name)" "intact:""CCSB ORF ID: 1124""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96IK5 uniprotkb:Q99633 - - "intact:""CCSB ORF ID: 4516""(author assigned name)" "intact:""CCSB ORF ID: 961""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96IK5 uniprotkb:Q9BYG5 - - "intact:""CCSB ORF ID: 4516""(author assigned name)" "intact:""CCSB ORF ID: 10823""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96JW4 uniprotkb:Q9H2J7 - - "intact:""CCSB ORF ID: 10034""(author assigned name)" "intact:""CCSB ORF ID: 14524""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96JW4 uniprotkb:Q9UM44 - - "intact:""CCSB ORF ID: 10034""(author assigned name)" "intact:""CCSB ORF ID: 100010310""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96LK0 uniprotkb:Q9BQD7 - - "intact:""CCSB ORF ID: 5119""(author assigned name)" "intact:""CCSB ORF ID: 3348""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96LK0 uniprotkb:Q9H3S7 - - "intact:""CCSB ORF ID: 5119""(author assigned name)" "intact:""CCSB ORF ID: 55313""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96MF2 uniprotkb:Q9UGU5 - - "intact:""CCSB ORF ID: 4447""(author assigned name)" "intact:""CCSB ORF ID: 100000265""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96MV8 uniprotkb:Q9BWM7 - - "intact:""CCSB ORF ID: 52707""(author assigned name)" "intact:""CCSB ORF ID: 3299""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96MV8 uniprotkb:Q9BXJ8 - - "intact:""CCSB ORF ID: 52707""(author assigned name)" "intact:""CCSB ORF ID: 11818""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96MV8 uniprotkb:Q9P0S3 - - "intact:""CCSB ORF ID: 52707""(author assigned name)" "intact:""CCSB ORF ID: 5492""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96MV8 uniprotkb:Q9Y385 - - "intact:""CCSB ORF ID: 52707""(author assigned name)" "intact:""CCSB ORF ID: 6225""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96MY7 uniprotkb:Q9HAF1 - - "intact:""CCSB ORF ID: 71174""(author assigned name)" "intact:""CCSB ORF ID: 7537""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96MY7 uniprotkb:Q9UKJ5 - - "intact:""CCSB ORF ID: 71174""(author assigned name)" "intact:""CCSB ORF ID: 2645""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q96NB3 uniprotkb:Q9NP66 - - "intact:""CCSB ORF ID: 7196""(author assigned name)" "intact:""CCSB ORF ID: 193""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q99633 uniprotkb:Q9H269 - - "intact:""CCSB ORF ID: 961""(author assigned name)" "intact:""CCSB ORF ID: 14624""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q99665 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 71843""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q99697 uniprotkb:Q9H2G9 - - "intact:""CCSB ORF ID: 6983""(author assigned name)" "intact:""CCSB ORF ID: 13067""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q99697 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 6983""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BQB6 uniprotkb:Q9NR31 - - "intact:""CCSB ORF ID: 4421""(author assigned name)" "intact:""CCSB ORF ID: 4040""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BQB6 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 4421""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BQD7 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 3348""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BQE5 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 4309""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BT92 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 4259""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BUN5 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 8003""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BWM7 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 3299""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BXJ8 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 11818""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BXJ8 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 11818""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BXJ8 uniprotkb:Q9Y394 - - "intact:""CCSB ORF ID: 11818""(author assigned name)" "intact:""CCSB ORF ID: 5420""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9BZV2 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 9333""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9C0F3 uniprotkb:Q9H0I2 - - "intact:""CCSB ORF ID: 11396""(author assigned name)" "intact:""CCSB ORF ID: 4798""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9C0F3 uniprotkb:Q9H257 - - "intact:""CCSB ORF ID: 11396""(author assigned name)" "intact:""CCSB ORF ID: 5439""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9C0F3 uniprotkb:Q9HAK2 - - "intact:""CCSB ORF ID: 11396""(author assigned name)" "intact:""CCSB ORF ID: 100015559""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H0I2 uniprotkb:Q9NZ72 - - "intact:""CCSB ORF ID: 4798""(author assigned name)" "intact:""CCSB ORF ID: 6710""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H0I2 uniprotkb:Q9UGU5 - - "intact:""CCSB ORF ID: 4798""(author assigned name)" "intact:""CCSB ORF ID: 100000265""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H0I2 uniprotkb:Q9UKJ5 - - "intact:""CCSB ORF ID: 4798""(author assigned name)" "intact:""CCSB ORF ID: 2645""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H257 uniprotkb:Q9H2G9 - - "intact:""CCSB ORF ID: 5439""(author assigned name)" "intact:""CCSB ORF ID: 13067""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H257 uniprotkb:Q9NQE9 - - "intact:""CCSB ORF ID: 5439""(author assigned name)" "intact:""CCSB ORF ID: 7672""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H257 uniprotkb:Q9NWH7 - - "intact:""CCSB ORF ID: 5439""(author assigned name)" "intact:""CCSB ORF ID: 12927""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H257 uniprotkb:Q9NZL3 - - "intact:""CCSB ORF ID: 5439""(author assigned name)" "intact:""CCSB ORF ID: 11777""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H257 uniprotkb:Q9UII6 - - "intact:""CCSB ORF ID: 5439""(author assigned name)" "intact:""CCSB ORF ID: 6314""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H269 uniprotkb:Q9UJU2 - - "intact:""CCSB ORF ID: 14624""(author assigned name)" "intact:""CCSB ORF ID: 11725""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H2G9 uniprotkb:Q9UL16 - - "intact:""CCSB ORF ID: 13067""(author assigned name)" "intact:""CCSB ORF ID: 70435""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H2G9 uniprotkb:Q9Y242 - - "intact:""CCSB ORF ID: 13067""(author assigned name)" "intact:""CCSB ORF ID: 6776""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H2G9 uniprotkb:Q9Y247 - - "intact:""CCSB ORF ID: 13067""(author assigned name)" "intact:""CCSB ORF ID: 1846""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H2J7 uniprotkb:Q9H2L4 - - "intact:""CCSB ORF ID: 14524""(author assigned name)" "intact:""CCSB ORF ID: 12368""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H2J7 uniprotkb:Q9NVC3 - - "intact:""CCSB ORF ID: 14524""(author assigned name)" "intact:""CCSB ORF ID: 3619""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H2L4 uniprotkb:Q9H6H4 - - "intact:""CCSB ORF ID: 12368""(author assigned name)" "intact:""CCSB ORF ID: 623""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H2L4 uniprotkb:Q9NP94 - - "intact:""CCSB ORF ID: 12368""(author assigned name)" "intact:""CCSB ORF ID: 52686""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H2L4 uniprotkb:Q9NR31 - - "intact:""CCSB ORF ID: 12368""(author assigned name)" "intact:""CCSB ORF ID: 4040""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H2L4 uniprotkb:Q9NY26 - - "intact:""CCSB ORF ID: 12368""(author assigned name)" "intact:""CCSB ORF ID: 5151""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H2L4 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 12368""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H668 uniprotkb:Q9NQ75 - - "intact:""CCSB ORF ID: 5868""(author assigned name)" "intact:""CCSB ORF ID: 8369""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H6H4 uniprotkb:Q9H6V9 - - "intact:""CCSB ORF ID: 623""(author assigned name)" "intact:""CCSB ORF ID: 6515""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H6H4 uniprotkb:Q9H9B4 - - "intact:""CCSB ORF ID: 623""(author assigned name)" "intact:""CCSB ORF ID: 11782""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H6H4 uniprotkb:Q9P0S3 - - "intact:""CCSB ORF ID: 623""(author assigned name)" "intact:""CCSB ORF ID: 5492""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9H6H4 uniprotkb:Q9Y385 - - "intact:""CCSB ORF ID: 623""(author assigned name)" "intact:""CCSB ORF ID: 6225""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9HAK2 uniprotkb:Q9NZL3 - - "intact:""CCSB ORF ID: 100015559""(author assigned name)" "intact:""CCSB ORF ID: 11777""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9HAK2 uniprotkb:Q9UKJ5 - - "intact:""CCSB ORF ID: 100015559""(author assigned name)" "intact:""CCSB ORF ID: 2645""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9HB07 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 11748""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9HBE1 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 12624""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NP66 uniprotkb:Q9NR81 - - "intact:""CCSB ORF ID: 193""(author assigned name)" "intact:""CCSB ORF ID: 55633""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NP66 uniprotkb:Q9NU39 - - "intact:""CCSB ORF ID: 193""(author assigned name)" "intact:""CCSB ORF ID: 100015584""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NP66 uniprotkb:Q9UBU8 - - "intact:""CCSB ORF ID: 193""(author assigned name)" "intact:""CCSB ORF ID: 4430""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NP66 uniprotkb:Q9Y210 - - "intact:""CCSB ORF ID: 193""(author assigned name)" "intact:""CCSB ORF ID: 71651""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NP66 uniprotkb:Q9Y6X6 - - "intact:""CCSB ORF ID: 193""(author assigned name)" "intact:""CCSB ORF ID: 72125""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NP94 uniprotkb:Q9Y385 - - "intact:""CCSB ORF ID: 52686""(author assigned name)" "intact:""CCSB ORF ID: 6225""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NR31 uniprotkb:Q9NVC3 - - "intact:""CCSB ORF ID: 4040""(author assigned name)" "intact:""CCSB ORF ID: 3619""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NR31 uniprotkb:Q9P0S3 - - "intact:""CCSB ORF ID: 4040""(author assigned name)" "intact:""CCSB ORF ID: 5492""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NVC3 uniprotkb:Q9UM44 - - "intact:""CCSB ORF ID: 3619""(author assigned name)" "intact:""CCSB ORF ID: 100010310""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NVC3 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 3619""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NW38 uniprotkb:Q9NZL3 - - "intact:""CCSB ORF ID: 11743""(author assigned name)" "intact:""CCSB ORF ID: 11777""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NW38 uniprotkb:Q9UDW3 - - "intact:""CCSB ORF ID: 11743""(author assigned name)" "intact:""CCSB ORF ID: 3090""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NZ72 uniprotkb:Q9P2M1 - - "intact:""CCSB ORF ID: 6710""(author assigned name)" "intact:""CCSB ORF ID: 70192""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NZ72 uniprotkb:Q9UI47 - - "intact:""CCSB ORF ID: 6710""(author assigned name)" "intact:""CCSB ORF ID: 71258""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9NZ72 uniprotkb:Q9UL16 - - "intact:""CCSB ORF ID: 6710""(author assigned name)" "intact:""CCSB ORF ID: 70435""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9P0S3 uniprotkb:Q9Y282 - - "intact:""CCSB ORF ID: 5492""(author assigned name)" "intact:""CCSB ORF ID: 6446""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9UKJ5 uniprotkb:Q9Y3E2 - - "intact:""CCSB ORF ID: 2645""(author assigned name)" "intact:""CCSB ORF ID: 12086""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
+uniprotkb:Q9Y282 uniprotkb:Q9Y385 - - "intact:""CCSB ORF ID: 6446""(author assigned name)" "intact:""CCSB ORF ID: 6225""(author assigned name)" "psi-mi:""MI:0018""(two hybrid)" - test_space_verified taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) "psi-mi:""MI:0407""(direct interaction)" - - - - "psi-mi:""MI:0499""(unspecified role)" "psi-mi:""MI:0499""(unspecified role)" - - "psi-mi:""MI:0326""(protein)" "psi-mi:""MI:0326""(protein)" - - - - - "comment:""assay version=6,8""" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - "psi-mi:""MI1180""(partial DNA sequence identification)" "psi-mi:""MI1180""(partial DNA sequence identification)"
diff --git a/web/uploads/try/test_10.psi b/web/uploads/try/test_10.psi
new file mode 100644
index 00000000..c53bf942
--- /dev/null
+++ b/web/uploads/try/test_10.psi
@@ -0,0 +1,11 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_100.psi b/web/uploads/try/test_100.psi
new file mode 100644
index 00000000..7b025074
--- /dev/null
+++ b/web/uploads/try/test_100.psi
@@ -0,0 +1,81 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_1000.psi b/web/uploads/try/test_1000.psi
new file mode 100644
index 00000000..1e4ace78
--- /dev/null
+++ b/web/uploads/try/test_1000.psi
@@ -0,0 +1,801 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_1050.psi b/web/uploads/try/test_1050.psi
new file mode 100644
index 00000000..9cc3367b
--- /dev/null
+++ b/web/uploads/try/test_1050.psi
@@ -0,0 +1,1001 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86480 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86481 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86496 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8IUC2 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8TDS5 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 70408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BRT3 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9H0F6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:A0A0D2X7Z3 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 10480"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P07954 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 3408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P42167 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11923"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGH3 uniprotkb:Q6PJ21 - - intact:"CCSB ORF ID: 3322"(author assigned name) intact:"CCSB ORF ID: 55230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGJ8 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 14916"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:O60906 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q00765 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 12362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6ZPD8 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 100069030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q969L2 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q96DZ9 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q9BW62 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:P62166 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 4378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ3 uniprotkb:P50222 - - intact:"CCSB ORF ID: 6700"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:O00303 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P40937 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P80217 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100010286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q8NHP7 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 1852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q9NP55 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 6320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGR0 uniprotkb:O60437 - - intact:"CCSB ORF ID: 14172"(author assigned name) intact:"CCSB ORF ID: 56285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A8K727 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:E9PSE9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00311 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00506 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O14777 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43395 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43602 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43741 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43809 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60341 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60763 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9988"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75604 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75608 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75934 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O94875 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95391 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95678 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95983 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95995 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00540 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00973 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P04264 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P10606 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P13682 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P14136 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P15622 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P17036 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P18084 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5834"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25786 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25800 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P26196 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29474 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29972 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P38936 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P40617 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3861"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P41182 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53151"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P48047 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49638 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49756 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70593"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P53365 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P54646 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55040 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55081 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56279 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56524 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P57771 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61019 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4478"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61326 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61968 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q01664 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q0P5N6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q12774 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6559"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13094 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1108"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13573 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13835 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14449 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11912"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14687 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14964 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9502"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15052 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15319 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53479"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15735 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q32MN6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q56NI9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 56739"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T5P2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T7P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5THR3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71382"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NS38 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14660"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P5Z2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6UWV6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6ZSJ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86TB9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86UU5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86Y33 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YV0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9456"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IUD6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54459"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVT2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX01 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1035"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX12 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53185"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYH5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10126"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N7B6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA54 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56482"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA57 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NCX0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13371"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8ND82 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NEY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TCX5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WUD1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_1100.psi b/web/uploads/try/test_1100.psi
new file mode 100644
index 00000000..e2ea7d57
--- /dev/null
+++ b/web/uploads/try/test_1100.psi
@@ -0,0 +1,1051 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86480 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86481 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86496 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8IUC2 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8TDS5 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 70408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BRT3 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9H0F6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:A0A0D2X7Z3 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 10480"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P07954 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 3408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P42167 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11923"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGH3 uniprotkb:Q6PJ21 - - intact:"CCSB ORF ID: 3322"(author assigned name) intact:"CCSB ORF ID: 55230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGJ8 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 14916"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:O60906 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q00765 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 12362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6ZPD8 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 100069030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q969L2 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q96DZ9 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q9BW62 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:P62166 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 4378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ3 uniprotkb:P50222 - - intact:"CCSB ORF ID: 6700"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:O00303 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P40937 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P80217 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100010286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q8NHP7 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 1852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q9NP55 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 6320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGR0 uniprotkb:O60437 - - intact:"CCSB ORF ID: 14172"(author assigned name) intact:"CCSB ORF ID: 56285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A8K727 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:E9PSE9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00311 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00506 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O14777 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43395 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43602 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43741 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43809 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60341 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60763 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9988"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75604 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75608 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75934 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O94875 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95391 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95678 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95983 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95995 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00540 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00973 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P04264 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P10606 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P13682 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P14136 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P15622 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P17036 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P18084 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5834"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25786 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25800 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P26196 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29474 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29972 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P38936 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P40617 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3861"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P41182 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53151"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P48047 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49638 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49756 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70593"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P53365 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P54646 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55040 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55081 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56279 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56524 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P57771 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61019 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4478"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61326 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61968 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q01664 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q0P5N6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q12774 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6559"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13094 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1108"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13573 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13835 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14449 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11912"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14687 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14964 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9502"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15052 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15319 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53479"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15735 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q32MN6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q56NI9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 56739"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T5P2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T7P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5THR3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71382"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NS38 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14660"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P5Z2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6UWV6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6ZSJ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86TB9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86UU5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86Y33 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YV0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9456"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IUD6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54459"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVT2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX01 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1035"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX12 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53185"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYH5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10126"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N7B6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA54 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56482"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA57 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NCX0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13371"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8ND82 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NEY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TCX5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WUD1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 5182"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969R5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5892"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96C55 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96CN9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96DZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 871"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96I25 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5200"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5489"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KM6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2283"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MX3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100069883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96NC0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96PN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9272"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96QH2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9458"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RF0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RK0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99459 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99469 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99569 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99728 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54455"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99958 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99959 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BRU9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW85 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7803"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0W8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H4E5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_1150.psi b/web/uploads/try/test_1150.psi
new file mode 100644
index 00000000..b4ee0393
--- /dev/null
+++ b/web/uploads/try/test_1150.psi
@@ -0,0 +1,1101 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86480 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86481 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86496 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8IUC2 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8TDS5 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 70408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BRT3 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9H0F6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:A0A0D2X7Z3 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 10480"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P07954 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 3408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P42167 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11923"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGH3 uniprotkb:Q6PJ21 - - intact:"CCSB ORF ID: 3322"(author assigned name) intact:"CCSB ORF ID: 55230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGJ8 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 14916"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:O60906 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q00765 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 12362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6ZPD8 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 100069030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q969L2 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q96DZ9 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q9BW62 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:P62166 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 4378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ3 uniprotkb:P50222 - - intact:"CCSB ORF ID: 6700"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:O00303 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P40937 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P80217 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100010286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q8NHP7 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 1852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q9NP55 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 6320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGR0 uniprotkb:O60437 - - intact:"CCSB ORF ID: 14172"(author assigned name) intact:"CCSB ORF ID: 56285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A8K727 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:E9PSE9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00311 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00506 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O14777 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43395 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43602 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43741 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43809 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60341 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60763 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9988"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75604 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75608 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75934 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O94875 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95391 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95678 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95983 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95995 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00540 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00973 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P04264 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P10606 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P13682 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P14136 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P15622 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P17036 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P18084 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5834"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25786 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25800 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P26196 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29474 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29972 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P38936 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P40617 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3861"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P41182 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53151"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P48047 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49638 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49756 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70593"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P53365 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P54646 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55040 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55081 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56279 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56524 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P57771 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61019 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4478"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61326 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61968 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q01664 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q0P5N6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q12774 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6559"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13094 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1108"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13573 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13835 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14449 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11912"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14687 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14964 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9502"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15052 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15319 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53479"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15735 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q32MN6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q56NI9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 56739"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T5P2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T7P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5THR3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71382"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NS38 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14660"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P5Z2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6UWV6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6ZSJ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86TB9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86UU5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86Y33 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YV0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9456"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IUD6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54459"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVT2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX01 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1035"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX12 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53185"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYH5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10126"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N7B6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA54 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56482"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA57 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NCX0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13371"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8ND82 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NEY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TCX5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WUD1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 5182"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969R5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5892"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96C55 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96CN9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96DZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 871"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96I25 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5200"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5489"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KM6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2283"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MX3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100069883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96NC0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96PN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9272"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96QH2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9458"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RF0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RK0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99459 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99469 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99569 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99728 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54455"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99958 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99959 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BRU9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW85 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7803"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0W8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H4E5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H5Z6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6X5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6Z4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H7L9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71749"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H987 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 72050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NPJ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NS91 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1782"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NU19 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVF7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6921"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NW64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 928"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P289 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y242 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6776"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y2P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y376 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGT3 uniprotkb:P43357 - - intact:"CCSB ORF ID: 2378"(author assigned name) intact:"CCSB ORF ID: 100009500"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q0VGL1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 54866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW6 uniprotkb:P51687 - - intact:"CCSB ORF ID: 56847"(author assigned name) intact:"CCSB ORF ID: 71191"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW7 uniprotkb:O43639 - - intact:"CCSB ORF ID: 1523"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:O43765 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q59EK9 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 4465"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:P49247 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 747"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH65 uniprotkb:P49356 - - intact:"CCSB ORF ID: 72022"(author assigned name) intact:"CCSB ORF ID: 7869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:H3BMC3 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O15344 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 11907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_1200.psi b/web/uploads/try/test_1200.psi
new file mode 100644
index 00000000..cb4af770
--- /dev/null
+++ b/web/uploads/try/test_1200.psi
@@ -0,0 +1,1150 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86480 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86481 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86496 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8IUC2 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8TDS5 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 70408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BRT3 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9H0F6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:A0A0D2X7Z3 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 10480"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P07954 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 3408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P42167 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11923"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGH3 uniprotkb:Q6PJ21 - - intact:"CCSB ORF ID: 3322"(author assigned name) intact:"CCSB ORF ID: 55230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGJ8 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 14916"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:O60906 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q00765 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 12362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6ZPD8 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 100069030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q969L2 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q96DZ9 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q9BW62 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:P62166 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 4378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ3 uniprotkb:P50222 - - intact:"CCSB ORF ID: 6700"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:O00303 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P40937 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P80217 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100010286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q8NHP7 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 1852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q9NP55 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 6320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGR0 uniprotkb:O60437 - - intact:"CCSB ORF ID: 14172"(author assigned name) intact:"CCSB ORF ID: 56285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A8K727 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:E9PSE9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00311 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00506 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O14777 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43395 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43602 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43741 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43809 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60341 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60763 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9988"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75604 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75608 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75934 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O94875 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95391 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95678 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95983 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95995 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00540 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00973 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P04264 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P10606 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P13682 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P14136 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P15622 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P17036 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P18084 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5834"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25786 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25800 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P26196 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29474 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29972 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P38936 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P40617 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3861"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P41182 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53151"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P48047 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49638 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49756 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70593"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P53365 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P54646 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55040 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55081 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56279 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56524 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P57771 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61019 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4478"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61326 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61968 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q01664 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q0P5N6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q12774 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6559"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13094 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1108"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13573 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13835 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14449 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11912"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14687 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14964 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9502"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15052 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15319 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53479"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15735 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q32MN6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q56NI9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 56739"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T5P2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T7P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5THR3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71382"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NS38 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14660"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P5Z2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6UWV6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6ZSJ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86TB9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86UU5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86Y33 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YV0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9456"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IUD6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54459"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVT2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX01 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1035"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX12 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53185"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYH5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10126"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N7B6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA54 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56482"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA57 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NCX0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13371"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8ND82 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NEY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TCX5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WUD1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 5182"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969R5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5892"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96C55 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96CN9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96DZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 871"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96I25 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5200"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5489"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KM6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2283"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MX3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100069883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96NC0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96PN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9272"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96QH2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9458"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RF0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RK0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99459 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99469 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99569 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99728 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54455"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99958 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99959 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BRU9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW85 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7803"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0W8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H4E5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H5Z6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6X5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6Z4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H7L9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71749"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H987 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 72050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NPJ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NS91 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1782"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NU19 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVF7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6921"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NW64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 928"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P289 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y242 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6776"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y2P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y376 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGT3 uniprotkb:P43357 - - intact:"CCSB ORF ID: 2378"(author assigned name) intact:"CCSB ORF ID: 100009500"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q0VGL1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 54866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW6 uniprotkb:P51687 - - intact:"CCSB ORF ID: 56847"(author assigned name) intact:"CCSB ORF ID: 71191"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW7 uniprotkb:O43639 - - intact:"CCSB ORF ID: 1523"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:O43765 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q59EK9 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 4465"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:P49247 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 747"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH65 uniprotkb:P49356 - - intact:"CCSB ORF ID: 72022"(author assigned name) intact:"CCSB ORF ID: 7869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:H3BMC3 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O15344 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 11907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O75360 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O76083 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3048"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O95544 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P26371 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13791"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60369 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60409 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60410 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q2TAL6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71514"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI70 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100062578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8G8 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015815"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q701N4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100014855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H0D6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 53263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H190 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 4161"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SEJ5 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7282"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:O95231 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:P52597 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q96CS7 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q9BYJ9 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 10561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q8WWN9 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 71930"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q969H4 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 5889"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:P60409 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q8NCK3 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 7363"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q96JP5 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 10608"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A0A0J9YY34 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 70538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O43186 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O60504 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O76011 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O95678 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O96006 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 201"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P07196 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_130.psi b/web/uploads/try/test_130.psi
new file mode 100644
index 00000000..a031cc10
--- /dev/null
+++ b/web/uploads/try/test_130.psi
@@ -0,0 +1,101 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_1300.psi b/web/uploads/try/test_1300.psi
new file mode 100644
index 00000000..b900f549
--- /dev/null
+++ b/web/uploads/try/test_1300.psi
@@ -0,0 +1,1201 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86480 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86481 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86496 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8IUC2 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8TDS5 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 70408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BRT3 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9H0F6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:A0A0D2X7Z3 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 10480"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P07954 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 3408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P42167 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11923"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGH3 uniprotkb:Q6PJ21 - - intact:"CCSB ORF ID: 3322"(author assigned name) intact:"CCSB ORF ID: 55230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGJ8 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 14916"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:O60906 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q00765 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 12362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6ZPD8 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 100069030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q969L2 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q96DZ9 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q9BW62 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:P62166 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 4378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ3 uniprotkb:P50222 - - intact:"CCSB ORF ID: 6700"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:O00303 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P40937 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P80217 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100010286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q8NHP7 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 1852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q9NP55 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 6320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGR0 uniprotkb:O60437 - - intact:"CCSB ORF ID: 14172"(author assigned name) intact:"CCSB ORF ID: 56285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A8K727 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:E9PSE9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00311 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00506 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O14777 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43395 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43602 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43741 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43809 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60341 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60763 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9988"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75604 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75608 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75934 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O94875 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95391 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95678 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95983 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95995 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00540 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00973 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P04264 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P10606 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P13682 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P14136 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P15622 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P17036 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P18084 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5834"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25786 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25800 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P26196 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29474 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29972 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P38936 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P40617 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3861"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P41182 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53151"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P48047 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49638 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49756 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70593"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P53365 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P54646 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55040 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55081 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56279 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56524 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P57771 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61019 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4478"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61326 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61968 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q01664 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q0P5N6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q12774 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6559"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13094 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1108"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13573 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13835 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14449 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11912"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14687 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14964 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9502"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15052 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15319 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53479"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15735 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q32MN6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q56NI9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 56739"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T5P2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T7P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5THR3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71382"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NS38 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14660"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P5Z2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6UWV6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6ZSJ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86TB9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86UU5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86Y33 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YV0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9456"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IUD6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54459"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVT2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX01 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1035"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX12 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53185"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYH5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10126"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N7B6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA54 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56482"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA57 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NCX0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13371"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8ND82 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NEY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TCX5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WUD1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 5182"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969R5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5892"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96C55 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96CN9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96DZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 871"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96I25 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5200"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5489"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KM6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2283"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MX3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100069883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96NC0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96PN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9272"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96QH2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9458"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RF0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RK0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99459 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99469 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99569 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99728 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54455"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99958 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99959 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BRU9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW85 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7803"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0W8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H4E5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H5Z6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6X5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6Z4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H7L9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71749"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H987 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 72050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NPJ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NS91 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1782"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NU19 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVF7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6921"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NW64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 928"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P289 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y242 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6776"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y2P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y376 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGT3 uniprotkb:P43357 - - intact:"CCSB ORF ID: 2378"(author assigned name) intact:"CCSB ORF ID: 100009500"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q0VGL1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 54866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW6 uniprotkb:P51687 - - intact:"CCSB ORF ID: 56847"(author assigned name) intact:"CCSB ORF ID: 71191"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW7 uniprotkb:O43639 - - intact:"CCSB ORF ID: 1523"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:O43765 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q59EK9 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 4465"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:P49247 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 747"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH65 uniprotkb:P49356 - - intact:"CCSB ORF ID: 72022"(author assigned name) intact:"CCSB ORF ID: 7869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:H3BMC3 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O15344 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 11907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O75360 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O76083 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3048"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O95544 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P26371 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13791"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60369 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60409 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60410 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q2TAL6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71514"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI70 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100062578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8G8 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015815"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q701N4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100014855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H0D6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 53263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H190 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 4161"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SEJ5 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7282"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:O95231 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:P52597 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q96CS7 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q9BYJ9 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 10561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q8WWN9 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 71930"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q969H4 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 5889"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:P60409 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q8NCK3 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 7363"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q96JP5 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 10608"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A0A0J9YY34 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 70538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O43186 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O60504 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O76011 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O95678 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O96006 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 201"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P07196 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P13646 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P14373 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P31321 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P37198 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P38432 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6448"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P46934 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100068511"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P48051 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P78424 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5T7B8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 52949"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6IA69 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4650"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6UY14 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8IYA8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 2265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8NC26 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8WYQ9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71765"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96BR9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 784"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96DT7 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56858"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96EG3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96KN3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100066872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BWG4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BXU3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11118"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H079 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13000"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H5J0 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100011516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9P286 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 1317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9Y3Q8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6551"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O43639 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O60504 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O75031 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P45984 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 10051"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P54253 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P61981 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 801"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P63172 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100010307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_150.psi b/web/uploads/try/test_150.psi
new file mode 100644
index 00000000..789b078d
--- /dev/null
+++ b/web/uploads/try/test_150.psi
@@ -0,0 +1,131 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_1500.psi b/web/uploads/try/test_1500.psi
new file mode 100644
index 00000000..a61706ff
--- /dev/null
+++ b/web/uploads/try/test_1500.psi
@@ -0,0 +1,1301 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86480 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86481 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86496 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8IUC2 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8TDS5 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 70408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BRT3 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9H0F6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:A0A0D2X7Z3 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 10480"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P07954 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 3408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P42167 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11923"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGH3 uniprotkb:Q6PJ21 - - intact:"CCSB ORF ID: 3322"(author assigned name) intact:"CCSB ORF ID: 55230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGJ8 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 14916"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:O60906 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q00765 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 12362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6ZPD8 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 100069030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q969L2 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q96DZ9 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q9BW62 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:P62166 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 4378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ3 uniprotkb:P50222 - - intact:"CCSB ORF ID: 6700"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:O00303 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P40937 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P80217 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100010286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q8NHP7 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 1852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q9NP55 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 6320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGR0 uniprotkb:O60437 - - intact:"CCSB ORF ID: 14172"(author assigned name) intact:"CCSB ORF ID: 56285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A8K727 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:E9PSE9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00311 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00506 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O14777 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43395 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43602 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43741 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43809 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60341 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60763 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9988"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75604 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75608 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75934 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O94875 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95391 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95678 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95983 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95995 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00540 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00973 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P04264 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P10606 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P13682 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P14136 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P15622 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P17036 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P18084 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5834"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25786 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25800 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P26196 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29474 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29972 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P38936 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P40617 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3861"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P41182 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53151"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P48047 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49638 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49756 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70593"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P53365 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P54646 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55040 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55081 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56279 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56524 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P57771 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61019 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4478"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61326 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61968 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q01664 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q0P5N6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q12774 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6559"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13094 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1108"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13573 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13835 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14449 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11912"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14687 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14964 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9502"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15052 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15319 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53479"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15735 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q32MN6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q56NI9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 56739"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T5P2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T7P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5THR3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71382"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NS38 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14660"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P5Z2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6UWV6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6ZSJ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86TB9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86UU5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86Y33 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YV0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9456"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IUD6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54459"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVT2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX01 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1035"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX12 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53185"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYH5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10126"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N7B6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA54 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56482"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA57 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NCX0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13371"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8ND82 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NEY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TCX5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WUD1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 5182"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969R5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5892"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96C55 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96CN9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96DZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 871"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96I25 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5200"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5489"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KM6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2283"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MX3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100069883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96NC0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96PN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9272"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96QH2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9458"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RF0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RK0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99459 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99469 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99569 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99728 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54455"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99958 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99959 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BRU9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW85 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7803"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0W8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H4E5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H5Z6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6X5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6Z4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H7L9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71749"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H987 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 72050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NPJ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NS91 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1782"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NU19 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVF7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6921"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NW64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 928"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P289 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y242 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6776"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y2P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y376 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGT3 uniprotkb:P43357 - - intact:"CCSB ORF ID: 2378"(author assigned name) intact:"CCSB ORF ID: 100009500"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q0VGL1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 54866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW6 uniprotkb:P51687 - - intact:"CCSB ORF ID: 56847"(author assigned name) intact:"CCSB ORF ID: 71191"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW7 uniprotkb:O43639 - - intact:"CCSB ORF ID: 1523"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:O43765 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q59EK9 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 4465"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:P49247 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 747"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH65 uniprotkb:P49356 - - intact:"CCSB ORF ID: 72022"(author assigned name) intact:"CCSB ORF ID: 7869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:H3BMC3 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O15344 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 11907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O75360 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O76083 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3048"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O95544 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P26371 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13791"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60369 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60409 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60410 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q2TAL6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71514"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI70 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100062578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8G8 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015815"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q701N4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100014855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H0D6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 53263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H190 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 4161"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SEJ5 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7282"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:O95231 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:P52597 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q96CS7 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q9BYJ9 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 10561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q8WWN9 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 71930"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q969H4 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 5889"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:P60409 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q8NCK3 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 7363"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q96JP5 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 10608"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A0A0J9YY34 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 70538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O43186 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O60504 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O76011 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O95678 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O96006 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 201"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P07196 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P13646 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P14373 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P31321 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P37198 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P38432 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6448"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P46934 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100068511"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P48051 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P78424 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5T7B8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 52949"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6IA69 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4650"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6UY14 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8IYA8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 2265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8NC26 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8WYQ9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71765"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96BR9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 784"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96DT7 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56858"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96EG3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96KN3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100066872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BWG4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BXU3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11118"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H079 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13000"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H5J0 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100011516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9P286 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 1317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9Y3Q8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6551"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O43639 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O60504 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O75031 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P45984 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 10051"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P54253 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P61981 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 801"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P63172 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100010307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q14247 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 4780"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q8IZP0 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 12435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q8WWB5 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 7404"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q96KQ4 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 70264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9Y297 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9477"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F2 uniprotkb:P25024 - - intact:"CCSB ORF ID: 646"(author assigned name) intact:"CCSB ORF ID: 9591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F2 uniprotkb:Q9BZJ8 - - intact:"CCSB ORF ID: 646"(author assigned name) intact:"CCSB ORF ID: 14596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5250"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RQE4 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 52832"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RQE4 uniprotkb:Q96HL8 - - intact:"CCSB ORF ID: 52832"(author assigned name) intact:"CCSB ORF ID: 5457"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RR07 uniprotkb:O95070 - - intact:"CCSB ORF ID: 8617"(author assigned name) intact:"CCSB ORF ID: 954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RR07 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 8617"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:O14832 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2156"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q86YM7 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 742"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8TF65 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8WUI4 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 8955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG71 uniprotkb:P18615 - - intact:"CCSB ORF ID: 100002417"(author assigned name) intact:"CCSB ORF ID: 11790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:A0A140G945 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 13813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:O00560 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:O14558 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 71013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:P02511 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 5585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q9H8Y8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 4973"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A5E8 uniprotkb:P81274 - - intact:"CCSB ORF ID: 2892"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV02 uniprotkb:P26367 - - intact:"CCSB ORF ID: 54317"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:A1L443 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 54690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:F8VZP4 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 7334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:P32243 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 9958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:P57721 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 7219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q5SWW7 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 71280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q6P1W5 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 14312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q8N6W0 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 9550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q9NWB1 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 53797"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:O95721 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:P63167 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 56155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:Q9BSR8 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 4338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVK6 uniprotkb:P50222 - - intact:"CCSB ORF ID: 54475"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVK6 uniprotkb:Q9UNE7 - - intact:"CCSB ORF ID: 54475"(author assigned name) intact:"CCSB ORF ID: 5219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:A0MZ66 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 15060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:P05413 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 5483"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:P62508 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 10820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9NP64 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 4639"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9Y2D4 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 100063937"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJW8 uniprotkb:Q15915 - - intact:"CCSB ORF ID: 56904"(author assigned name) intact:"CCSB ORF ID: 70473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJW8 uniprotkb:Q53EP0 - - intact:"CCSB ORF ID: 56904"(author assigned name) intact:"CCSB ORF ID: 676"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q7Z3C6 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 12318"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q86VE0 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 72064"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q96C00 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 7677"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q99757 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 2398"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q9BSH4 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 4898"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX4 uniprotkb:P50222 - - intact:"CCSB ORF ID: 56909"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:O15393 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 11816"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:O60238 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 2427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:P04233 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 12638"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:P32856 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q99942 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 5370"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q9HDC5 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 70808"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK05 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 56941"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK05 uniprotkb:Q9Y5L5 - - intact:"CCSB ORF ID: 56941"(author assigned name) intact:"CCSB ORF ID: 55757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:E9PEI6 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 13893"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:P26715 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 13628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:P27105 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 3031"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q8N6S5 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 2022"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q9UHP7 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 8186"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A4F0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 54269"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A4G5 uniprotkb:O60269 - - intact:"CCSB ORF ID: 54500"(author assigned name) intact:"CCSB ORF ID: 6830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:P61236 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q5BKX5 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 71426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5C7 uniprotkb:P50222 - - intact:"CCSB ORF ID: 53347"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5C7 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 53347"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:P32969 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 4725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:Q6P597 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 54463"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_1800.psi b/web/uploads/try/test_1800.psi
new file mode 100644
index 00000000..478ab632
--- /dev/null
+++ b/web/uploads/try/test_1800.psi
@@ -0,0 +1,1501 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86480 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86481 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86496 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8IUC2 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8TDS5 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 70408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BRT3 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9H0F6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:A0A0D2X7Z3 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 10480"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P07954 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 3408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P42167 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11923"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGH3 uniprotkb:Q6PJ21 - - intact:"CCSB ORF ID: 3322"(author assigned name) intact:"CCSB ORF ID: 55230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGJ8 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 14916"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:O60906 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q00765 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 12362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6ZPD8 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 100069030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q969L2 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q96DZ9 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q9BW62 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:P62166 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 4378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ3 uniprotkb:P50222 - - intact:"CCSB ORF ID: 6700"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:O00303 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P40937 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P80217 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100010286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q8NHP7 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 1852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q9NP55 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 6320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGR0 uniprotkb:O60437 - - intact:"CCSB ORF ID: 14172"(author assigned name) intact:"CCSB ORF ID: 56285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A8K727 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:E9PSE9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00311 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00506 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O14777 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43395 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43602 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43741 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43809 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60341 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60763 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9988"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75604 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75608 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75934 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O94875 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95391 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95678 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95983 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95995 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00540 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00973 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P04264 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P10606 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P13682 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P14136 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P15622 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P17036 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P18084 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5834"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25786 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25800 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P26196 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29474 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29972 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P38936 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P40617 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3861"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P41182 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53151"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P48047 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49638 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49756 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70593"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P53365 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P54646 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55040 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55081 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56279 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56524 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P57771 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61019 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4478"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61326 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61968 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q01664 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q0P5N6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q12774 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6559"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13094 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1108"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13573 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13835 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14449 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11912"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14687 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14964 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9502"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15052 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15319 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53479"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15735 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q32MN6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q56NI9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 56739"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T5P2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T7P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5THR3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71382"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NS38 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14660"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P5Z2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6UWV6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6ZSJ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86TB9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86UU5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86Y33 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YV0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9456"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IUD6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54459"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVT2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX01 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1035"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX12 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53185"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYH5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10126"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N7B6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA54 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56482"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA57 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NCX0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13371"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8ND82 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NEY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TCX5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WUD1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 5182"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969R5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5892"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96C55 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96CN9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96DZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 871"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96I25 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5200"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5489"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KM6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2283"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MX3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100069883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96NC0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96PN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9272"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96QH2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9458"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RF0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RK0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99459 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99469 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99569 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99728 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54455"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99958 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99959 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BRU9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW85 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7803"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0W8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H4E5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H5Z6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6X5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6Z4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H7L9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71749"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H987 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 72050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NPJ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NS91 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1782"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NU19 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVF7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6921"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NW64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 928"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P289 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y242 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6776"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y2P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y376 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGT3 uniprotkb:P43357 - - intact:"CCSB ORF ID: 2378"(author assigned name) intact:"CCSB ORF ID: 100009500"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q0VGL1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 54866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW6 uniprotkb:P51687 - - intact:"CCSB ORF ID: 56847"(author assigned name) intact:"CCSB ORF ID: 71191"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW7 uniprotkb:O43639 - - intact:"CCSB ORF ID: 1523"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:O43765 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q59EK9 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 4465"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:P49247 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 747"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH65 uniprotkb:P49356 - - intact:"CCSB ORF ID: 72022"(author assigned name) intact:"CCSB ORF ID: 7869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:H3BMC3 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O15344 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 11907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O75360 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O76083 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3048"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O95544 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P26371 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13791"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60369 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60409 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60410 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q2TAL6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71514"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI70 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100062578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8G8 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015815"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q701N4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100014855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H0D6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 53263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H190 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 4161"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SEJ5 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7282"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:O95231 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:P52597 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q96CS7 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q9BYJ9 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 10561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q8WWN9 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 71930"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q969H4 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 5889"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:P60409 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q8NCK3 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 7363"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q96JP5 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 10608"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A0A0J9YY34 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 70538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O43186 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O60504 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O76011 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O95678 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O96006 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 201"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P07196 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P13646 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P14373 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P31321 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P37198 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P38432 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6448"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P46934 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100068511"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P48051 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P78424 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5T7B8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 52949"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6IA69 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4650"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6UY14 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8IYA8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 2265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8NC26 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8WYQ9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71765"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96BR9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 784"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96DT7 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56858"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96EG3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96KN3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100066872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BWG4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BXU3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11118"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H079 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13000"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H5J0 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100011516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9P286 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 1317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9Y3Q8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6551"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O43639 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O60504 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O75031 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P45984 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 10051"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P54253 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P61981 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 801"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P63172 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100010307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q14247 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 4780"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q8IZP0 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 12435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q8WWB5 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 7404"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q96KQ4 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 70264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9Y297 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9477"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F2 uniprotkb:P25024 - - intact:"CCSB ORF ID: 646"(author assigned name) intact:"CCSB ORF ID: 9591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F2 uniprotkb:Q9BZJ8 - - intact:"CCSB ORF ID: 646"(author assigned name) intact:"CCSB ORF ID: 14596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5250"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RQE4 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 52832"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RQE4 uniprotkb:Q96HL8 - - intact:"CCSB ORF ID: 52832"(author assigned name) intact:"CCSB ORF ID: 5457"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RR07 uniprotkb:O95070 - - intact:"CCSB ORF ID: 8617"(author assigned name) intact:"CCSB ORF ID: 954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RR07 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 8617"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:O14832 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2156"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q86YM7 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 742"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8TF65 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8WUI4 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 8955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG71 uniprotkb:P18615 - - intact:"CCSB ORF ID: 100002417"(author assigned name) intact:"CCSB ORF ID: 11790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:A0A140G945 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 13813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:O00560 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:O14558 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 71013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:P02511 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 5585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q9H8Y8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 4973"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A5E8 uniprotkb:P81274 - - intact:"CCSB ORF ID: 2892"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV02 uniprotkb:P26367 - - intact:"CCSB ORF ID: 54317"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:A1L443 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 54690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:F8VZP4 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 7334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:P32243 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 9958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:P57721 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 7219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q5SWW7 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 71280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q6P1W5 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 14312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q8N6W0 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 9550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q9NWB1 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 53797"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:O95721 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:P63167 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 56155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:Q9BSR8 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 4338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVK6 uniprotkb:P50222 - - intact:"CCSB ORF ID: 54475"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVK6 uniprotkb:Q9UNE7 - - intact:"CCSB ORF ID: 54475"(author assigned name) intact:"CCSB ORF ID: 5219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:A0MZ66 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 15060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:P05413 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 5483"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:P62508 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 10820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9NP64 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 4639"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9Y2D4 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 100063937"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJW8 uniprotkb:Q15915 - - intact:"CCSB ORF ID: 56904"(author assigned name) intact:"CCSB ORF ID: 70473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJW8 uniprotkb:Q53EP0 - - intact:"CCSB ORF ID: 56904"(author assigned name) intact:"CCSB ORF ID: 676"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q7Z3C6 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 12318"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q86VE0 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 72064"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q96C00 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 7677"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q99757 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 2398"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q9BSH4 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 4898"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX4 uniprotkb:P50222 - - intact:"CCSB ORF ID: 56909"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:O15393 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 11816"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:O60238 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 2427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:P04233 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 12638"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:P32856 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q99942 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 5370"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q9HDC5 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 70808"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK05 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 56941"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK05 uniprotkb:Q9Y5L5 - - intact:"CCSB ORF ID: 56941"(author assigned name) intact:"CCSB ORF ID: 55757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:E9PEI6 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 13893"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:P26715 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 13628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:P27105 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 3031"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q8N6S5 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 2022"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q9UHP7 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 8186"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A4F0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 54269"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A4G5 uniprotkb:O60269 - - intact:"CCSB ORF ID: 54500"(author assigned name) intact:"CCSB ORF ID: 6830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:P61236 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q5BKX5 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 71426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5C7 uniprotkb:P50222 - - intact:"CCSB ORF ID: 53347"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5C7 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 53347"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:P32969 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 4725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:Q6P597 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 54463"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:Q9BZZ5 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 100008312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O00560 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O14964 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O95231 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:P09234 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 53235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:P61236 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q13444 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 5820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q71SY5 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 100067615"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q8IWB4 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 10400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O43251 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 12686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O43711 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 7807"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O75593 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 40080553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O75909 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O95231 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O95817 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P14678 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14994"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P17482 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6243"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P21549 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 70497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P32242 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P61236 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P78337 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q01085 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q01974 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 54746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q13227 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 8584"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14119 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100015985"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14511 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14735"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14847 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q15915 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 70473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q64LD2 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 3942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q6PEX3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 10781"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q71SY5 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100067615"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z3H4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 54131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q8WU58 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6466"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q92567 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q96A09 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6636"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q96K80 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 7896"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BZE0 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100014501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9H0L4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 9560"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9H6Z9 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 52628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9NQB0 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 9999"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9ULV5 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100015118"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L162 uniprotkb:O75367 - - intact:"CCSB ORF ID: 56901"(author assigned name) intact:"CCSB ORF ID: 6390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L162 uniprotkb:Q9UIG4 - - intact:"CCSB ORF ID: 56901"(author assigned name) intact:"CCSB ORF ID: 100069008"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q5XKE5 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 14366"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q96ES7 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L429 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54674"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:G5E9X2 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 14722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O14964 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O43639 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O75800 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 9866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:P54725 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 7058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:P62993 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 8010"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q13158 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 4004"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q13952 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q8NDC4 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 11060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q99961 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 1845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:O00560 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:P37198 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 11746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q13503 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 5677"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q5SW79 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 1496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q96BD8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q96CS2 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 7083"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q9UPT5 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 2931"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q9Y6Y8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 14293"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O14964 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O43482 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O43602 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O60645 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12212"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O60941 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 2991"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O76064 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4755"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O95295 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4350"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O95363 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12653"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P10768 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P13682 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P31146 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P36508 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 9"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P54646 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P56524 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P78358 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q14119 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 100015985"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q2TBA0 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55865"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5U623 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 71349"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q6ZNE5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 52986"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TAB5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96EG3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96HP4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 5302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96PV4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BT49 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4297"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BUL9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 5253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H0A9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H9D4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9UK33 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9ULD5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9ULM2 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 10146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9Y3B7 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3729"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1XBS5 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 1476"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1XBS5 uniprotkb:Q9Y3M2 - - intact:"CCSB ORF ID: 1476"(author assigned name) intact:"CCSB ORF ID: 317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:A2RU14 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 54962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:O43169 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 4315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:O95159 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 12430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q5BJF2 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 70428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q5SNT2 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 55327"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q5VZY2 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 55122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q8IXM6 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 11259"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q8N5M9 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 12527"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q8N6R1 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 9195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q96FZ5 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 6944"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q96G79 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 5821"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q9Y6X1 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 53090"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A3K4 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 71195"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A3K4 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 71195"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:Q6UY14 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 9414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:P18848 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:P26639 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 4658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:Q9BQ95 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 3307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:Q9BW92 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 6795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTY3 uniprotkb:Q9Y5R4 - - intact:"CCSB ORF ID: 55006"(author assigned name) intact:"CCSB ORF ID: 3511"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:D3DPN2 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 6231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:J3KQ12 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 6644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:O15393 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 11816"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:P58170 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 55936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q58DX5 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 13308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q6PL24 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 71768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q6ZS10 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 70810"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8IUN9 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 10294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8TB36 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 2560"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8WWH4 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 54290"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q96HJ5 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 5793"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_20.psi b/web/uploads/try/test_20.psi
new file mode 100644
index 00000000..c53bf942
--- /dev/null
+++ b/web/uploads/try/test_20.psi
@@ -0,0 +1,11 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_200.psi b/web/uploads/try/test_200.psi
new file mode 100644
index 00000000..853f1a03
--- /dev/null
+++ b/web/uploads/try/test_200.psi
@@ -0,0 +1,151 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_2000.psi b/web/uploads/try/test_2000.psi
new file mode 100644
index 00000000..72480177
--- /dev/null
+++ b/web/uploads/try/test_2000.psi
@@ -0,0 +1,1801 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86480 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86481 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86496 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8IUC2 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8TDS5 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 70408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BRT3 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9H0F6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:A0A0D2X7Z3 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 10480"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P07954 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 3408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P42167 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11923"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGH3 uniprotkb:Q6PJ21 - - intact:"CCSB ORF ID: 3322"(author assigned name) intact:"CCSB ORF ID: 55230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGJ8 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 14916"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:O60906 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q00765 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 12362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6ZPD8 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 100069030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q969L2 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q96DZ9 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q9BW62 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:P62166 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 4378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ3 uniprotkb:P50222 - - intact:"CCSB ORF ID: 6700"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:O00303 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P40937 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P80217 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100010286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q8NHP7 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 1852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q9NP55 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 6320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGR0 uniprotkb:O60437 - - intact:"CCSB ORF ID: 14172"(author assigned name) intact:"CCSB ORF ID: 56285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A8K727 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:E9PSE9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00311 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00506 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O14777 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43395 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43602 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43741 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43809 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60341 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60763 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9988"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75604 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75608 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75934 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O94875 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95391 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95678 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95983 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95995 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00540 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00973 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P04264 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P10606 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P13682 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P14136 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P15622 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P17036 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P18084 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5834"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25786 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25800 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P26196 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29474 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29972 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P38936 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P40617 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3861"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P41182 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53151"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P48047 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49638 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49756 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70593"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P53365 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P54646 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55040 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55081 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56279 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56524 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P57771 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61019 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4478"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61326 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61968 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q01664 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q0P5N6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q12774 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6559"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13094 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1108"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13573 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13835 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14449 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11912"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14687 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14964 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9502"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15052 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15319 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53479"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15735 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q32MN6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q56NI9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 56739"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T5P2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T7P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5THR3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71382"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NS38 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14660"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P5Z2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6UWV6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6ZSJ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86TB9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86UU5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86Y33 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YV0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9456"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IUD6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54459"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVT2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX01 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1035"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX12 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53185"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYH5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10126"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N7B6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA54 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56482"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA57 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NCX0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13371"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8ND82 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NEY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TCX5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WUD1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 5182"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969R5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5892"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96C55 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96CN9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96DZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 871"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96I25 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5200"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5489"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KM6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2283"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MX3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100069883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96NC0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96PN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9272"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96QH2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9458"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RF0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RK0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99459 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99469 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99569 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99728 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54455"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99958 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99959 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BRU9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW85 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7803"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0W8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H4E5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H5Z6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6X5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6Z4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H7L9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71749"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H987 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 72050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NPJ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NS91 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1782"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NU19 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVF7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6921"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NW64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 928"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P289 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y242 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6776"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y2P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y376 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGT3 uniprotkb:P43357 - - intact:"CCSB ORF ID: 2378"(author assigned name) intact:"CCSB ORF ID: 100009500"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q0VGL1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 54866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW6 uniprotkb:P51687 - - intact:"CCSB ORF ID: 56847"(author assigned name) intact:"CCSB ORF ID: 71191"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW7 uniprotkb:O43639 - - intact:"CCSB ORF ID: 1523"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:O43765 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q59EK9 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 4465"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:P49247 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 747"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH65 uniprotkb:P49356 - - intact:"CCSB ORF ID: 72022"(author assigned name) intact:"CCSB ORF ID: 7869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:H3BMC3 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O15344 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 11907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O75360 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O76083 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3048"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O95544 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P26371 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13791"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60369 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60409 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60410 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q2TAL6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71514"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI70 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100062578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8G8 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015815"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q701N4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100014855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H0D6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 53263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H190 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 4161"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SEJ5 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7282"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:O95231 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:P52597 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q96CS7 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q9BYJ9 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 10561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q8WWN9 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 71930"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q969H4 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 5889"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:P60409 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q8NCK3 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 7363"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q96JP5 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 10608"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A0A0J9YY34 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 70538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O43186 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O60504 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O76011 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O95678 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O96006 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 201"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P07196 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P13646 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P14373 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P31321 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P37198 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P38432 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6448"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P46934 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100068511"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P48051 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P78424 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5T7B8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 52949"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6IA69 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4650"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6UY14 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8IYA8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 2265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8NC26 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8WYQ9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71765"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96BR9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 784"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96DT7 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56858"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96EG3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96KN3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100066872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BWG4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BXU3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11118"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H079 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13000"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H5J0 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100011516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9P286 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 1317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9Y3Q8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6551"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O43639 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O60504 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O75031 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P45984 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 10051"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P54253 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P61981 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 801"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P63172 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100010307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q14247 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 4780"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q8IZP0 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 12435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q8WWB5 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 7404"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q96KQ4 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 70264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9Y297 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9477"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F2 uniprotkb:P25024 - - intact:"CCSB ORF ID: 646"(author assigned name) intact:"CCSB ORF ID: 9591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F2 uniprotkb:Q9BZJ8 - - intact:"CCSB ORF ID: 646"(author assigned name) intact:"CCSB ORF ID: 14596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5250"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RQE4 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 52832"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RQE4 uniprotkb:Q96HL8 - - intact:"CCSB ORF ID: 52832"(author assigned name) intact:"CCSB ORF ID: 5457"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RR07 uniprotkb:O95070 - - intact:"CCSB ORF ID: 8617"(author assigned name) intact:"CCSB ORF ID: 954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RR07 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 8617"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:O14832 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2156"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q86YM7 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 742"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8TF65 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8WUI4 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 8955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG71 uniprotkb:P18615 - - intact:"CCSB ORF ID: 100002417"(author assigned name) intact:"CCSB ORF ID: 11790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:A0A140G945 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 13813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:O00560 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:O14558 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 71013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:P02511 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 5585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q9H8Y8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 4973"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A5E8 uniprotkb:P81274 - - intact:"CCSB ORF ID: 2892"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV02 uniprotkb:P26367 - - intact:"CCSB ORF ID: 54317"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:A1L443 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 54690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:F8VZP4 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 7334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:P32243 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 9958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:P57721 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 7219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q5SWW7 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 71280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q6P1W5 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 14312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q8N6W0 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 9550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q9NWB1 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 53797"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:O95721 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:P63167 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 56155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:Q9BSR8 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 4338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVK6 uniprotkb:P50222 - - intact:"CCSB ORF ID: 54475"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVK6 uniprotkb:Q9UNE7 - - intact:"CCSB ORF ID: 54475"(author assigned name) intact:"CCSB ORF ID: 5219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:A0MZ66 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 15060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:P05413 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 5483"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:P62508 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 10820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9NP64 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 4639"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9Y2D4 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 100063937"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJW8 uniprotkb:Q15915 - - intact:"CCSB ORF ID: 56904"(author assigned name) intact:"CCSB ORF ID: 70473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJW8 uniprotkb:Q53EP0 - - intact:"CCSB ORF ID: 56904"(author assigned name) intact:"CCSB ORF ID: 676"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q7Z3C6 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 12318"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q86VE0 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 72064"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q96C00 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 7677"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q99757 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 2398"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q9BSH4 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 4898"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX4 uniprotkb:P50222 - - intact:"CCSB ORF ID: 56909"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:O15393 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 11816"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:O60238 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 2427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:P04233 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 12638"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:P32856 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q99942 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 5370"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q9HDC5 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 70808"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK05 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 56941"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK05 uniprotkb:Q9Y5L5 - - intact:"CCSB ORF ID: 56941"(author assigned name) intact:"CCSB ORF ID: 55757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:E9PEI6 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 13893"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:P26715 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 13628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:P27105 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 3031"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q8N6S5 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 2022"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q9UHP7 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 8186"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A4F0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 54269"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A4G5 uniprotkb:O60269 - - intact:"CCSB ORF ID: 54500"(author assigned name) intact:"CCSB ORF ID: 6830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:P61236 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q5BKX5 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 71426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5C7 uniprotkb:P50222 - - intact:"CCSB ORF ID: 53347"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5C7 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 53347"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:P32969 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 4725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:Q6P597 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 54463"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:Q9BZZ5 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 100008312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O00560 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O14964 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O95231 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:P09234 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 53235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:P61236 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q13444 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 5820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q71SY5 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 100067615"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q8IWB4 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 10400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O43251 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 12686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O43711 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 7807"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O75593 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 40080553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O75909 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O95231 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O95817 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P14678 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14994"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P17482 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6243"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P21549 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 70497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P32242 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P61236 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P78337 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q01085 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q01974 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 54746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q13227 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 8584"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14119 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100015985"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14511 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14735"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14847 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q15915 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 70473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q64LD2 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 3942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q6PEX3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 10781"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q71SY5 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100067615"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z3H4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 54131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q8WU58 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6466"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q92567 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q96A09 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6636"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q96K80 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 7896"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BZE0 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100014501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9H0L4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 9560"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9H6Z9 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 52628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9NQB0 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 9999"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9ULV5 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100015118"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L162 uniprotkb:O75367 - - intact:"CCSB ORF ID: 56901"(author assigned name) intact:"CCSB ORF ID: 6390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L162 uniprotkb:Q9UIG4 - - intact:"CCSB ORF ID: 56901"(author assigned name) intact:"CCSB ORF ID: 100069008"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q5XKE5 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 14366"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q96ES7 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L429 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54674"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:G5E9X2 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 14722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O14964 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O43639 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O75800 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 9866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:P54725 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 7058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:P62993 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 8010"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q13158 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 4004"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q13952 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q8NDC4 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 11060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q99961 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 1845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:O00560 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:P37198 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 11746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q13503 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 5677"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q5SW79 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 1496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q96BD8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q96CS2 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 7083"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q9UPT5 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 2931"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q9Y6Y8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 14293"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O14964 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O43482 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O43602 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O60645 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12212"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O60941 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 2991"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O76064 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4755"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O95295 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4350"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O95363 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12653"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P10768 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P13682 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P31146 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P36508 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 9"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P54646 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P56524 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P78358 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q14119 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 100015985"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q2TBA0 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55865"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5U623 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 71349"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q6ZNE5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 52986"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TAB5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96EG3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96HP4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 5302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96PV4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BT49 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4297"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BUL9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 5253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H0A9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H9D4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9UK33 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9ULD5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9ULM2 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 10146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9Y3B7 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3729"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1XBS5 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 1476"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1XBS5 uniprotkb:Q9Y3M2 - - intact:"CCSB ORF ID: 1476"(author assigned name) intact:"CCSB ORF ID: 317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:A2RU14 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 54962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:O43169 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 4315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:O95159 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 12430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q5BJF2 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 70428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q5SNT2 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 55327"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q5VZY2 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 55122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q8IXM6 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 11259"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q8N5M9 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 12527"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q8N6R1 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 9195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q96FZ5 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 6944"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q96G79 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 5821"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q9Y6X1 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 53090"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A3K4 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 71195"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A3K4 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 71195"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:Q6UY14 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 9414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:P18848 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:P26639 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 4658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:Q9BQ95 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 3307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:Q9BW92 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 6795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTY3 uniprotkb:Q9Y5R4 - - intact:"CCSB ORF ID: 55006"(author assigned name) intact:"CCSB ORF ID: 3511"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:D3DPN2 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 6231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:J3KQ12 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 6644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:O15393 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 11816"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:P58170 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 55936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q58DX5 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 13308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q6PL24 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 71768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q6ZS10 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 70810"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8IUN9 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 10294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8TB36 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 2560"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8WWH4 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 54290"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q96HJ5 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 5793"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q9BVX2 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 2758"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q9BZJ8 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 14596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q9GZY8 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q9Y4D2 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 72218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RUT3 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 70496"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2VCK2 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56436"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2VCK2 uniprotkb:O75031 - - intact:"CCSB ORF ID: 56436"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2VCK2 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 56436"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2VCK2 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 56436"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:O14669 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 12701"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:P49639 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:P55854 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 3528"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D1P6 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 7808"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D1S5 uniprotkb:P47224 - - intact:"CCSB ORF ID: 70773"(author assigned name) intact:"CCSB ORF ID: 1105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D1S5 uniprotkb:P60410 - - intact:"CCSB ORF ID: 70773"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D1S5 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 70773"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q8TC99 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 100066716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q9NPC6 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 5651"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4GXA9 uniprotkb:P50222 - - intact:"CCSB ORF ID: 100068198"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4QMS7 uniprotkb:O75031 - - intact:"CCSB ORF ID: 56111"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4QMS7 uniprotkb:O76011 - - intact:"CCSB ORF ID: 56111"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4QMS7 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 56111"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8T8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 14653"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8T8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 14653"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8T8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 14653"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:H9KV84 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 11020"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:J9JIE9 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 13449"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O00167 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 4872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O00308 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O15496 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 70073"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O43186 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O75081 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100070004"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O75340 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 570"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O75886 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 1863"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O75935 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3972"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O94868 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 6306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O94875 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O95429 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 10352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P08236 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 14889"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P35638 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3944"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P52435 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 12801"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P52597 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P55347 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 4897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P55771 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100011621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P62837 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 2319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P62993 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 8010"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P86478 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P86479 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P86480 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P86481 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P86496 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q01085 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q01196 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 70610"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q12906 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 14292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q13227 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 8584"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q14525 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 6802"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q14847 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 5231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q16633 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 9980"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q3LI70 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100062578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q4LEZ3 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 72017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q53EZ4 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 4717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q6P1W5 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 14312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q7Z3B4 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 6292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q7Z4N8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 54137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q86WV8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 14153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8IWL8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 54606"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8N6F8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100009115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8NDC0 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 7591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8NFV4 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 8808"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8TF30 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71680"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8WWB3 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 1606"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q96AE4 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100010379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q96CA5 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 7606"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q96CS2 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 7083"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q96KN3 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100066872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q99961 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 1845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9BYJ9 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 10561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9NQ33 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100014515"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9NQG5 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 9950"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9UBV8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 4111"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q15276 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 11256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q2M2I5 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 71953"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6BM72 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 54209"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q5TA81 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 100064145"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q86XT4 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 72006"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q8IUC0 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 53744"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:O60941 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 2991"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:O75604 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:P08631 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 9159"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:P09067 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:P20700 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 2370"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:P25800 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:P55040 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q15311 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 2384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q96AA8 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 7784"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q96B97 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 164"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9BXY8 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 791"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9H4E7 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 7692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9NU19 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 52971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9Y228 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 54647"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9Y580 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 8444"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ND48 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 70841"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ND93 uniprotkb:O14770 - - intact:"CCSB ORF ID: 71740"(author assigned name) intact:"CCSB ORF ID: 11603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ND93 uniprotkb:O75360 - - intact:"CCSB ORF ID: 71740"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ND93 uniprotkb:P49639 - - intact:"CCSB ORF ID: 71740"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ND93 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 71740"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:O95429 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 10352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:P55040 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:P62993 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 8010"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:Q13200 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 3990"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:Q969Y2 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 5916"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:A8K8V0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:J3KPQ4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O00506 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O14964 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O15160 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O15371 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43167 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43189 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43257 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43296 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 56316"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43463 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43711 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7807"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43741 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O60225 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 847"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O75348 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5780"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95201 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95678 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95863 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 2620"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95872 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4771"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95983 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95990 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P00540 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P01024 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 72072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P02008 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 8297"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P04264 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P04808 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5799"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P09067 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P13682 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P15622 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P17021 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100016152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P17024 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P17041 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12749"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P17482 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6243"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P17661 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P29597 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P31273 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P43897 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P46379 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3898"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P49910 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P51504 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 72090"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P51687 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71191"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P55040 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P55081 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P56470 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P56524 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P57075 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P57086 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P61968 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P62328 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P63162 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P78424 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q00403 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q08AG5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 56809"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q12901 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54512"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q13415 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3005"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q14119 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100015985"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q14D33 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q15287 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4728"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q16595 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10735"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q16670 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q3KQV3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 52758"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q4VC44 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q5EBL2 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q5JTD0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q5T686 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 2772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q64LD2 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6IQ26 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6789"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6NUJ5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 14541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6P2D0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100063964"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6PF15 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54990"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6ZNH5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 56039"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q7L273 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12452"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q7Z7H3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11366"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q86UD4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q86XJ5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11423"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8IXJ9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N0Y2 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N143 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_250.psi b/web/uploads/try/test_250.psi
new file mode 100644
index 00000000..82ad5f3a
--- /dev/null
+++ b/web/uploads/try/test_250.psi
@@ -0,0 +1,251 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_2500.psi b/web/uploads/try/test_2500.psi
new file mode 100644
index 00000000..ef8286f9
--- /dev/null
+++ b/web/uploads/try/test_2500.psi
@@ -0,0 +1,2001 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86480 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86481 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86496 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8IUC2 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8TDS5 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 70408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BRT3 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9H0F6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:A0A0D2X7Z3 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 10480"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P07954 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 3408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P42167 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11923"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGH3 uniprotkb:Q6PJ21 - - intact:"CCSB ORF ID: 3322"(author assigned name) intact:"CCSB ORF ID: 55230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGJ8 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 14916"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:O60906 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q00765 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 12362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6ZPD8 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 100069030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q969L2 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q96DZ9 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q9BW62 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:P62166 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 4378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ3 uniprotkb:P50222 - - intact:"CCSB ORF ID: 6700"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:O00303 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P40937 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P80217 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100010286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q8NHP7 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 1852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q9NP55 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 6320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGR0 uniprotkb:O60437 - - intact:"CCSB ORF ID: 14172"(author assigned name) intact:"CCSB ORF ID: 56285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A8K727 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:E9PSE9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00311 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00506 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O14777 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43395 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43602 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43741 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43809 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60341 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60763 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9988"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75604 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75608 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75934 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O94875 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95391 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95678 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95983 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95995 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00540 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00973 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P04264 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P10606 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P13682 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P14136 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P15622 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P17036 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P18084 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5834"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25786 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25800 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P26196 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29474 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29972 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P38936 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P40617 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3861"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P41182 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53151"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P48047 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49638 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49756 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70593"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P53365 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P54646 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55040 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55081 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56279 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56524 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P57771 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61019 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4478"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61326 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61968 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q01664 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q0P5N6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q12774 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6559"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13094 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1108"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13573 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13835 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14449 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11912"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14687 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14964 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9502"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15052 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15319 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53479"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15735 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q32MN6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q56NI9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 56739"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T5P2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T7P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5THR3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71382"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NS38 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14660"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P5Z2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6UWV6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6ZSJ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86TB9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86UU5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86Y33 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YV0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9456"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IUD6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54459"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVT2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX01 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1035"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX12 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53185"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYH5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10126"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N7B6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA54 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56482"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA57 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NCX0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13371"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8ND82 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NEY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TCX5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WUD1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 5182"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969R5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5892"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96C55 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96CN9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96DZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 871"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96I25 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5200"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5489"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KM6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2283"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MX3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100069883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96NC0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96PN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9272"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96QH2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9458"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RF0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RK0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99459 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99469 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99569 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99728 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54455"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99958 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99959 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BRU9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW85 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7803"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0W8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H4E5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H5Z6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6X5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6Z4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H7L9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71749"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H987 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 72050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NPJ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NS91 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1782"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NU19 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVF7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6921"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NW64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 928"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P289 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y242 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6776"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y2P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y376 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGT3 uniprotkb:P43357 - - intact:"CCSB ORF ID: 2378"(author assigned name) intact:"CCSB ORF ID: 100009500"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q0VGL1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 54866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW6 uniprotkb:P51687 - - intact:"CCSB ORF ID: 56847"(author assigned name) intact:"CCSB ORF ID: 71191"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW7 uniprotkb:O43639 - - intact:"CCSB ORF ID: 1523"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:O43765 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q59EK9 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 4465"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:P49247 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 747"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH65 uniprotkb:P49356 - - intact:"CCSB ORF ID: 72022"(author assigned name) intact:"CCSB ORF ID: 7869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:H3BMC3 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O15344 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 11907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O75360 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O76083 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3048"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O95544 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P26371 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13791"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60369 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60409 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60410 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q2TAL6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71514"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI70 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100062578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8G8 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015815"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q701N4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100014855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H0D6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 53263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H190 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 4161"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SEJ5 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7282"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:O95231 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:P52597 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q96CS7 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q9BYJ9 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 10561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q8WWN9 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 71930"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q969H4 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 5889"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:P60409 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q8NCK3 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 7363"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q96JP5 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 10608"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A0A0J9YY34 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 70538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O43186 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O60504 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O76011 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O95678 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O96006 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 201"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P07196 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P13646 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P14373 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P31321 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P37198 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P38432 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6448"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P46934 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100068511"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P48051 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P78424 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5T7B8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 52949"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6IA69 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4650"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6UY14 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8IYA8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 2265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8NC26 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8WYQ9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71765"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96BR9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 784"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96DT7 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56858"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96EG3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96KN3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100066872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BWG4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BXU3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11118"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H079 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13000"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H5J0 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100011516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9P286 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 1317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9Y3Q8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6551"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O43639 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O60504 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O75031 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P45984 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 10051"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P54253 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P61981 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 801"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P63172 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100010307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q14247 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 4780"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q8IZP0 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 12435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q8WWB5 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 7404"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q96KQ4 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 70264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9Y297 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9477"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F2 uniprotkb:P25024 - - intact:"CCSB ORF ID: 646"(author assigned name) intact:"CCSB ORF ID: 9591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F2 uniprotkb:Q9BZJ8 - - intact:"CCSB ORF ID: 646"(author assigned name) intact:"CCSB ORF ID: 14596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5250"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RQE4 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 52832"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RQE4 uniprotkb:Q96HL8 - - intact:"CCSB ORF ID: 52832"(author assigned name) intact:"CCSB ORF ID: 5457"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RR07 uniprotkb:O95070 - - intact:"CCSB ORF ID: 8617"(author assigned name) intact:"CCSB ORF ID: 954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RR07 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 8617"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:O14832 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2156"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q86YM7 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 742"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8TF65 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8WUI4 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 8955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG71 uniprotkb:P18615 - - intact:"CCSB ORF ID: 100002417"(author assigned name) intact:"CCSB ORF ID: 11790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:A0A140G945 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 13813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:O00560 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:O14558 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 71013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:P02511 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 5585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q9H8Y8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 4973"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A5E8 uniprotkb:P81274 - - intact:"CCSB ORF ID: 2892"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV02 uniprotkb:P26367 - - intact:"CCSB ORF ID: 54317"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:A1L443 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 54690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:F8VZP4 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 7334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:P32243 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 9958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:P57721 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 7219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q5SWW7 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 71280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q6P1W5 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 14312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q8N6W0 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 9550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q9NWB1 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 53797"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:O95721 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:P63167 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 56155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:Q9BSR8 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 4338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVK6 uniprotkb:P50222 - - intact:"CCSB ORF ID: 54475"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVK6 uniprotkb:Q9UNE7 - - intact:"CCSB ORF ID: 54475"(author assigned name) intact:"CCSB ORF ID: 5219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:A0MZ66 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 15060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:P05413 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 5483"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:P62508 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 10820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9NP64 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 4639"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9Y2D4 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 100063937"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJW8 uniprotkb:Q15915 - - intact:"CCSB ORF ID: 56904"(author assigned name) intact:"CCSB ORF ID: 70473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJW8 uniprotkb:Q53EP0 - - intact:"CCSB ORF ID: 56904"(author assigned name) intact:"CCSB ORF ID: 676"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q7Z3C6 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 12318"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q86VE0 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 72064"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q96C00 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 7677"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q99757 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 2398"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q9BSH4 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 4898"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX4 uniprotkb:P50222 - - intact:"CCSB ORF ID: 56909"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:O15393 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 11816"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:O60238 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 2427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:P04233 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 12638"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:P32856 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q99942 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 5370"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q9HDC5 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 70808"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK05 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 56941"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK05 uniprotkb:Q9Y5L5 - - intact:"CCSB ORF ID: 56941"(author assigned name) intact:"CCSB ORF ID: 55757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:E9PEI6 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 13893"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:P26715 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 13628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:P27105 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 3031"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q8N6S5 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 2022"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q9UHP7 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 8186"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A4F0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 54269"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A4G5 uniprotkb:O60269 - - intact:"CCSB ORF ID: 54500"(author assigned name) intact:"CCSB ORF ID: 6830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:P61236 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q5BKX5 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 71426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5C7 uniprotkb:P50222 - - intact:"CCSB ORF ID: 53347"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5C7 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 53347"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:P32969 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 4725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:Q6P597 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 54463"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:Q9BZZ5 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 100008312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O00560 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O14964 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O95231 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:P09234 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 53235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:P61236 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q13444 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 5820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q71SY5 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 100067615"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q8IWB4 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 10400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O43251 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 12686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O43711 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 7807"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O75593 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 40080553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O75909 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O95231 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O95817 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P14678 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14994"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P17482 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6243"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P21549 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 70497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P32242 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P61236 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P78337 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q01085 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q01974 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 54746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q13227 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 8584"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14119 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100015985"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14511 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14735"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14847 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q15915 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 70473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q64LD2 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 3942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q6PEX3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 10781"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q71SY5 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100067615"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z3H4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 54131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q8WU58 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6466"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q92567 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q96A09 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6636"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q96K80 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 7896"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BZE0 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100014501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9H0L4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 9560"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9H6Z9 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 52628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9NQB0 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 9999"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9ULV5 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100015118"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L162 uniprotkb:O75367 - - intact:"CCSB ORF ID: 56901"(author assigned name) intact:"CCSB ORF ID: 6390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L162 uniprotkb:Q9UIG4 - - intact:"CCSB ORF ID: 56901"(author assigned name) intact:"CCSB ORF ID: 100069008"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q5XKE5 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 14366"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q96ES7 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L429 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54674"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:G5E9X2 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 14722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O14964 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O43639 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O75800 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 9866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:P54725 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 7058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:P62993 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 8010"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q13158 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 4004"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q13952 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q8NDC4 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 11060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q99961 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 1845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:O00560 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:P37198 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 11746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q13503 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 5677"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q5SW79 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 1496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q96BD8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q96CS2 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 7083"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q9UPT5 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 2931"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q9Y6Y8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 14293"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O14964 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O43482 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O43602 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O60645 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12212"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O60941 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 2991"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O76064 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4755"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O95295 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4350"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O95363 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12653"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P10768 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P13682 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P31146 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P36508 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 9"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P54646 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P56524 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P78358 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q14119 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 100015985"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q2TBA0 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55865"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5U623 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 71349"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q6ZNE5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 52986"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TAB5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96EG3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96HP4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 5302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96PV4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BT49 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4297"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BUL9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 5253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H0A9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9H9D4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9UK33 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9ULD5 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 70907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9ULM2 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 10146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:Q9Y3B7 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3729"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1XBS5 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 1476"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1XBS5 uniprotkb:Q9Y3M2 - - intact:"CCSB ORF ID: 1476"(author assigned name) intact:"CCSB ORF ID: 317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:A2RU14 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 54962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:O43169 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 4315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:O95159 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 12430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q5BJF2 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 70428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q5SNT2 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 55327"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q5VZY2 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 55122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q8IXM6 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 11259"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q8N5M9 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 12527"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q8N6R1 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 9195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q96FZ5 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 6944"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q96G79 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 5821"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A2Y4 uniprotkb:Q9Y6X1 - - intact:"CCSB ORF ID: 10499"(author assigned name) intact:"CCSB ORF ID: 53090"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A3K4 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 71195"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2A3K4 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 71195"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:Q6UY14 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 9414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RRC6 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 56237"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:P18848 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:P26639 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 4658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:Q9BQ95 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 3307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTX5 uniprotkb:Q9BW92 - - intact:"CCSB ORF ID: 55029"(author assigned name) intact:"CCSB ORF ID: 6795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RTY3 uniprotkb:Q9Y5R4 - - intact:"CCSB ORF ID: 55006"(author assigned name) intact:"CCSB ORF ID: 3511"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:D3DPN2 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 6231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:J3KQ12 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 6644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:O15393 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 11816"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:P58170 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 55936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q58DX5 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 13308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q6PL24 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 71768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q6ZS10 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 70810"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8IUN9 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 10294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8TB36 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 2560"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q8WWH4 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 54290"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q96HJ5 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 5793"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q9BVX2 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 2758"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q9BZJ8 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 14596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q9GZY8 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RU14 uniprotkb:Q9Y4D2 - - intact:"CCSB ORF ID: 54962"(author assigned name) intact:"CCSB ORF ID: 72218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2RUT3 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 70496"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2VCK2 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56436"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2VCK2 uniprotkb:O75031 - - intact:"CCSB ORF ID: 56436"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2VCK2 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 56436"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A2VCK2 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 56436"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:O14669 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 12701"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:P49639 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:P55854 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 3528"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D161 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 13380"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D1P6 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 7808"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D1S5 uniprotkb:P47224 - - intact:"CCSB ORF ID: 70773"(author assigned name) intact:"CCSB ORF ID: 1105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D1S5 uniprotkb:P60410 - - intact:"CCSB ORF ID: 70773"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D1S5 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 70773"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q8TC99 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 100066716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4D2B0 uniprotkb:Q9NPC6 - - intact:"CCSB ORF ID: 2241"(author assigned name) intact:"CCSB ORF ID: 5651"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4GXA9 uniprotkb:P50222 - - intact:"CCSB ORF ID: 100068198"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4QMS7 uniprotkb:O75031 - - intact:"CCSB ORF ID: 56111"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4QMS7 uniprotkb:O76011 - - intact:"CCSB ORF ID: 56111"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A4QMS7 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 56111"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8T8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 14653"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8T8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 14653"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8T8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 14653"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:H9KV84 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 11020"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:J9JIE9 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 13449"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O00167 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 4872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O00308 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O15496 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 70073"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O43186 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O75081 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100070004"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O75340 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 570"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O75886 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 1863"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O75935 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3972"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O94868 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 6306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O94875 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:O95429 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 10352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P08236 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 14889"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P35638 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3944"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P52435 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 12801"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P52597 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P55347 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 4897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P55771 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100011621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P62837 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 2319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P62993 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 8010"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P86478 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P86479 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P86480 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P86481 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P86496 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q01085 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q01196 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 70610"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q12906 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 14292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q13227 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 8584"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q14525 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 6802"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q14847 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 5231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q16633 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 9980"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q3LI70 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100062578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q4LEZ3 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 72017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q53EZ4 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 4717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q6P1W5 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 14312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q7Z3B4 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 6292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q7Z4N8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 54137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q86WV8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 14153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8IWL8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 54606"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8N6F8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100009115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8NDC0 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 7591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8NFV4 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 8808"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8TF30 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 71680"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q8WWB3 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 1606"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q96AE4 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100010379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q96CA5 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 7606"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q96CS2 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 7083"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q96KN3 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100066872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q99961 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 1845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9BYJ9 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 10561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9NQ33 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 100014515"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9NQG5 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 9950"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V6 uniprotkb:Q9UBV8 - - intact:"CCSB ORF ID: 55690"(author assigned name) intact:"CCSB ORF ID: 4111"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q15276 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 11256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q2M2I5 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 71953"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A5D8V7 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 55691"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6BM72 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 54209"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q5TA81 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 100064145"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q86XT4 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 72006"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q8IUC0 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 53744"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6H8Z2 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 72197"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:O60941 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 2991"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:O75604 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:P08631 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 9159"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:P09067 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:P20700 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 2370"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:P25800 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:P55040 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q15311 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 2384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q96AA8 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 7784"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q96B97 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 164"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9BXY8 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 791"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9H4E7 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 7692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9NU19 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 52971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9Y228 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 54647"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9Y580 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 8444"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NC98 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 70243"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ND48 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 70841"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ND93 uniprotkb:O14770 - - intact:"CCSB ORF ID: 71740"(author assigned name) intact:"CCSB ORF ID: 11603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ND93 uniprotkb:O75360 - - intact:"CCSB ORF ID: 71740"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ND93 uniprotkb:P49639 - - intact:"CCSB ORF ID: 71740"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ND93 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 71740"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:O95429 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 10352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:P55040 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:P62993 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 8010"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:Q13200 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 3990"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:Q969Y2 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 5916"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NDS4 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 100066377"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:A8K8V0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:J3KPQ4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O00506 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O14964 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O15160 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O15371 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43167 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43189 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43257 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43296 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 56316"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43463 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43711 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7807"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O43741 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O60225 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 847"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O75348 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5780"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95201 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95678 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95863 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 2620"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95872 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4771"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95983 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:O95990 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P00540 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P01024 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 72072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P02008 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 8297"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P04264 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P04808 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5799"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P09067 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P13682 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P15622 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P17021 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100016152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P17024 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P17041 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12749"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P17482 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6243"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P17661 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P29597 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P31273 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P43897 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P46379 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3898"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P49910 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P51504 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 72090"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P51687 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71191"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P55040 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P55081 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P56470 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P56524 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P57075 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P57086 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P61968 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P62328 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P63162 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:P78424 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q00403 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q08AG5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 56809"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q12901 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54512"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q13415 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3005"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q14119 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100015985"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q14D33 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q15287 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4728"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q16595 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10735"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q16670 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q3KQV3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 52758"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q4VC44 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q5EBL2 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q5JTD0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q5T686 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 2772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q64LD2 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6IQ26 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6789"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6NUJ5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 14541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6P2D0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100063964"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6PF15 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54990"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q6ZNH5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 56039"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q7L273 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12452"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q7Z7H3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11366"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q86UD4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q86XJ5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11423"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8IXJ9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N0Y2 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N143 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N7F7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12026"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N9B5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8NAP3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8NE01 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8NHZ7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100069019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8TBE0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 2544"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8TC57 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8WUI4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 8955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q8WYQ4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100000239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q92529 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1287"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q92608 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q92785 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q969G5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7175"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96AD5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96BR6 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1039"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96C55 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96EG3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96FJ0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 120"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96GE4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96GM5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96H86 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4947"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96JC4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100068192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96JC9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10507"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96MX3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100069883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96N58 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55807"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96NC0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 13326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96NL3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 14166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96PV4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 70027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96S90 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 15044"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q99757 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 2398"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BSH4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4898"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BSK4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100069824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BT49 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4297"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BU61 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4423"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BV47 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9BZE0 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100014501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9C086 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 11788"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9GZT3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9GZV7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 9305"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9H1K1 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12046"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9H2S5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 40080562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9H4E7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 7692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9H5I1 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4919"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9NPB3 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 100015976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9NPJ8 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 53158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9NSI2 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9NVF7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 8468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9P209 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 4"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9P2J8 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 52828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9UBU9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3939"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9UGP5 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9UJ04 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9UK33 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 1067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9ULM2 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 10146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9Y228 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 54647"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9Y3B7 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 3729"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9Y586 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 6694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM1 uniprotkb:Q9Y5E9 - - intact:"CCSB ORF ID: 10460"(author assigned name) intact:"CCSB ORF ID: 52678"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEM2 uniprotkb:Q9NS37 - - intact:"CCSB ORF ID: 12132"(author assigned name) intact:"CCSB ORF ID: 55647"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEQ0 uniprotkb:P38159 - - intact:"CCSB ORF ID: 100063959"(author assigned name) intact:"CCSB ORF ID: 4635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NEQ0 uniprotkb:Q15415 - - intact:"CCSB ORF ID: 100063959"(author assigned name) intact:"CCSB ORF ID: 100008842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NFY7 uniprotkb:O75360 - - intact:"CCSB ORF ID: 70533"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NFY7 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 70533"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NFY7 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 70533"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NGK3 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 100064143"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NH52 uniprotkb:P57086 - - intact:"CCSB ORF ID: 70704"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NH52 uniprotkb:Q8TF74 - - intact:"CCSB ORF ID: 70704"(author assigned name) intact:"CCSB ORF ID: 12322"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NHN6 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100063965"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:O14645 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 11636"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:O95751 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 3434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:P0C7W6 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 11109"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:P24592 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 4239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:P24844 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 100067212"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:P41134 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 604"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:P43360 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:P54257 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 100062247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:P78358 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 100063976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:Q02363 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 1362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:Q10567 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 100000476"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:Q6PF05 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 10937"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:Q6PJG6 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 7570"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:Q96RJ6 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 55940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:Q9UJW9 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 7081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NI15 uniprotkb:Q9UPT5 - - intact:"CCSB ORF ID: 100068995"(author assigned name) intact:"CCSB ORF ID: 2931"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:O60336 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 56352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:O75360 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:P31273 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:P33240 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 1077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:Q9HC98 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 3567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:Q9NW38 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 11743"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJ78 uniprotkb:Q9UBV8 - - intact:"CCSB ORF ID: 13215"(author assigned name) intact:"CCSB ORF ID: 4111"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJB7 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 12160"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJB7 uniprotkb:O75340 - - intact:"CCSB ORF ID: 12160"(author assigned name) intact:"CCSB ORF ID: 570"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJB7 uniprotkb:O76011 - - intact:"CCSB ORF ID: 12160"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJB7 uniprotkb:P60410 - - intact:"CCSB ORF ID: 12160"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJB7 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 12160"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJB7 uniprotkb:Q6UY14 - - intact:"CCSB ORF ID: 12160"(author assigned name) intact:"CCSB ORF ID: 9414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NJU9 uniprotkb:P50222 - - intact:"CCSB ORF ID: 2546"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NK75 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 55850"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NKD2 uniprotkb:Q9C005 - - intact:"CCSB ORF ID: 100015446"(author assigned name) intact:"CCSB ORF ID: 7540"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NKF2 uniprotkb:O00257 - - intact:"CCSB ORF ID: 100015389"(author assigned name) intact:"CCSB ORF ID: 7625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NKF2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100015389"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NKF2 uniprotkb:Q9NWQ9 - - intact:"CCSB ORF ID: 100015389"(author assigned name) intact:"CCSB ORF ID: 2431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NLX3 uniprotkb:O75604 - - intact:"CCSB ORF ID: 70835"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NLX3 uniprotkb:P35557 - - intact:"CCSB ORF ID: 70835"(author assigned name) intact:"CCSB ORF ID: 3689"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NLX3 uniprotkb:P47897 - - intact:"CCSB ORF ID: 70835"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NLX3 uniprotkb:P61024 - - intact:"CCSB ORF ID: 70835"(author assigned name) intact:"CCSB ORF ID: 4920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NLX3 uniprotkb:Q00526 - - intact:"CCSB ORF ID: 70835"(author assigned name) intact:"CCSB ORF ID: 100064010"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NLX3 uniprotkb:Q00535 - - intact:"CCSB ORF ID: 70835"(author assigned name) intact:"CCSB ORF ID: 3701"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NLX3 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 70835"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NLX3 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 70835"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NLX3 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 70835"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NLX3 uniprotkb:Q9Y3C6 - - intact:"CCSB ORF ID: 70835"(author assigned name) intact:"CCSB ORF ID: 3755"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6NNB3 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 100062348"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:O75971 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:O76014 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 100014378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:O76015 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 56827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:P0C7W6 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 11109"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:P54257 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 100062247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q13287 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 1797"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q5VTR2 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 52855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q6A163 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 100064009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q86T90 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 100002218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q8NCY6 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 100002174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q8TF30 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 71680"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q96CN9 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 7306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q9H0H5 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 10088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6QL64 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 5667"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6XGL0 uniprotkb:P28062 - - intact:"CCSB ORF ID: 100015367"(author assigned name) intact:"CCSB ORF ID: 6094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ZKI3 uniprotkb:O95872 - - intact:"CCSB ORF ID: 4696"(author assigned name) intact:"CCSB ORF ID: 4771"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ZKI3 uniprotkb:P25791 - - intact:"CCSB ORF ID: 4696"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ZKI3 uniprotkb:P42772 - - intact:"CCSB ORF ID: 4696"(author assigned name) intact:"CCSB ORF ID: 7698"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ZKI3 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 4696"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ZKI3 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 4696"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ZKI3 uniprotkb:Q86TG7 - - intact:"CCSB ORF ID: 4696"(author assigned name) intact:"CCSB ORF ID: 11814"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ZKI3 uniprotkb:Q96NU1 - - intact:"CCSB ORF ID: 4696"(author assigned name) intact:"CCSB ORF ID: 13528"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ZKI3 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4696"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A6ZKI3 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4696"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A7E2Y1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 13817"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A7E2Y1 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 13817"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A7E2Y1 uniprotkb:Q16134 - - intact:"CCSB ORF ID: 13817"(author assigned name) intact:"CCSB ORF ID: 7047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A7E2Y1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 13817"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A7E2Y1 uniprotkb:Q2TAL8 - - intact:"CCSB ORF ID: 13817"(author assigned name) intact:"CCSB ORF ID: 54736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A7E2Y1 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 13817"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A7E2Y1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 13817"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A7KAX9 uniprotkb:P50458 - - intact:"CCSB ORF ID: 53620"(author assigned name) intact:"CCSB ORF ID: 100069986"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A7MD48 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 100068177"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_30.psi b/web/uploads/try/test_30.psi
new file mode 100644
index 00000000..08e70e66
--- /dev/null
+++ b/web/uploads/try/test_30.psi
@@ -0,0 +1,21 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_300.psi b/web/uploads/try/test_300.psi
new file mode 100644
index 00000000..52f2f690
--- /dev/null
+++ b/web/uploads/try/test_300.psi
@@ -0,0 +1,301 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
diff --git a/web/uploads/try/test_3000.psi b/web/uploads/try/test_3000.psi
new file mode 100644
index 00000000..3dddf95b
--- /dev/null
+++ b/web/uploads/try/test_3000.psi
@@ -0,0 +1,2501 @@
+f1_uniprotkbA f2_uniprotkbB f3 f4 f5_aliases_a f6_aliases_b f7_mi_method f8_author f9_pubmed f10_tf10_taxid_A f11_taxid_A f12_int_type f13 f14 f15_confidence_score f16 f17_biological_role_a f18_biological_role_b f19_experiment_role_a f20_experiment_role_b f21_interactor_type_a f22_interactor_type_b f23 f24 f25 f26_annotation_a f27_annotation_b f28_annotation_interaction f29_host f30 f31_creation_date f32_update_date f33 f34 f35 f36 f37_feature_a f38_feature_b f39 f40 f41_participant_identification_method_a f42_participant_identification_method_b
+uniprotkb:A0A024R0Y4 uniprotkb:O14964 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P0DI81 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 100009158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P25800 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:P47897 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q6PEW1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 2252"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8IYX3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 9254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q96FV9 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 6311"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9BRG1 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 4839"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R0Y4 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6855"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R2X5 uniprotkb:P50222 - - intact:"CCSB ORF ID: 7318"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:A0A024R571 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 71880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:O95721 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R571 uniprotkb:Q9NZN3 - - intact:"CCSB ORF ID: 71880"(author assigned name) intact:"CCSB ORF ID: 100061626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A024R7E8 uniprotkb:Q49AR2 - - intact:"CCSB ORF ID: 4754"(author assigned name) intact:"CCSB ORF ID: 6253"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q15562 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 13622"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6E4 uniprotkb:Q99594 - - intact:"CCSB ORF ID: 5837"(author assigned name) intact:"CCSB ORF ID: 8351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6I8 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 13185"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6J4 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 12679"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:P50222 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6K1 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 12636"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B6P5 uniprotkb:Q15699 - - intact:"CCSB ORF ID: 13244"(author assigned name) intact:"CCSB ORF ID: 6450"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A1L4K1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:E9PJR5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O15084 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O43281 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 2454"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O60504 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O75525 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10061"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O94915 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:O95273 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P08670 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 69"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P14373 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P19012 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4105"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P23508 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P31321 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P35609 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P43360 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P51114 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100002625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P61978 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:P63010 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4761"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q01850 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7682"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13064 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q14532 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015241"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15654 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 3907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q15742 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q1MX18 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q4VC12 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 70433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q5SRQ6 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q6NUQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q86X02 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100070134"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N1B4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 12541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N4Y2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 13524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NA61 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1611"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8TD16 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 14656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q8WXK1 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100066415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q92841 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 8028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BRK4 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 4569"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NYA3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100061924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9NZQ3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 7705"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UJV3 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 1074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9UL41 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2D8 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 10081"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B739 uniprotkb:Q9Y2V7 - - intact:"CCSB ORF ID: 11356"(author assigned name) intact:"CCSB ORF ID: 71099"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A075B757 uniprotkb:O60341 - - intact:"CCSB ORF ID: 9348"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:O95817 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P43365 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:P61968 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WSW0 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100064168"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT00 uniprotkb:P35372 - - intact:"CCSB ORF ID: 13071"(author assigned name) intact:"CCSB ORF ID: 71567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT05 uniprotkb:O43765 - - intact:"CCSB ORF ID: 100016081"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P43361 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 6552"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:P60371 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 100064163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT08 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 53624"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:P07307 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 7813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT44 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 3970"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WT70 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 52891"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:H0YB98 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 6266"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:P32856 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q5T700 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 56905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q86VR2 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 10696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N112 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q92838 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 54326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q969F0 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 1868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q96JA4 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 100063989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9BZL3 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 93"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ2 uniprotkb:Q9HAV5 - - intact:"CCSB ORF ID: 6961"(author assigned name) intact:"CCSB ORF ID: 13548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTJ6 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 55822"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:P36021 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 100062331"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTP4 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 12317"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WTQ2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1141"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI2 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 3981"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:G3V1X1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:H0YDE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 70942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O00463 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2239"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O15084 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100066338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O43189 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5002"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O60504 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O75604 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O76041 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95198 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:O95391 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13196 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P13682 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P14373 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P15622 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P21580 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56214"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P55081 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P59910 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100014757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P63165 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P78424 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:P98170 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 10062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15014 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2KHN1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q4VCS5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5T409 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 72137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q5VWN6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q659C4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7L804 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71649"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IX15 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 54692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8N1G1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100068172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q8WUT1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 8058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96JN2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52859"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96KP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56547"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96LK0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M89 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 71167"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96M91 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9H3U1 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11189"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HAQ2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y250 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 100069938"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUI6 uniprotkb:Q9Y6D9 - - intact:"CCSB ORF ID: 71402"(author assigned name) intact:"CCSB ORF ID: 6811"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A0A087WUM8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:C9K0J8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70094"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15304 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2526"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O15535 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6372"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43309 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O43559 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O60447 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014548"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O75909 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:O76011 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P10073 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17022 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2116"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P17028 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P49910 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 1549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P57086 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 3585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P60369 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:P61201 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6323"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q15327 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7756"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q3MJ62 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100069795"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8NF99 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5107"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TBC5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100070153"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q8TF39 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 13381"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q969J2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96IT1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96JS3 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96KQ7 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 2537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q96N95 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 54637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9BZ67 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9H4T2 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4224"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9NX65 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 4197"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UMX1 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 6119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9UNY5 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 7210"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUM8 uniprotkb:Q9Y5A6 - - intact:"CCSB ORF ID: 6131"(author assigned name) intact:"CCSB ORF ID: 11464"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P26367 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q8TF50 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 6112"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96D03 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 3068"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WUP2 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 70095"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WV67 uniprotkb:P50222 - - intact:"CCSB ORF ID: 13127"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:O75716 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 11864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P20618 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P25791 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P61968 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:P81133 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 40080751"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q6NZ36 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 52595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9UJX0 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 53412"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y2T2 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 12337"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVE9 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 2179"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVM2 uniprotkb:Q9Y2W7 - - intact:"CCSB ORF ID: 8426"(author assigned name) intact:"CCSB ORF ID: 2897"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WVP0 uniprotkb:Q8WWV3 - - intact:"CCSB ORF ID: 9116"(author assigned name) intact:"CCSB ORF ID: 4993"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:A0A0A0MSI2 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 54840"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q4V328 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 100011508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q96E35 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 2656"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WW39 uniprotkb:Q9GZM8 - - intact:"CCSB ORF ID: 8961"(author assigned name) intact:"CCSB ORF ID: 1734"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O00308 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:O95817 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q8NB12 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 54271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWA7 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 11572"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWE2 uniprotkb:Q9NWX5 - - intact:"CCSB ORF ID: 14287"(author assigned name) intact:"CCSB ORF ID: 12181"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P60328 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100064148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:P61604 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 100010667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWF1 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 11052"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WWP8 uniprotkb:Q8WYB5 - - intact:"CCSB ORF ID: 1517"(author assigned name) intact:"CCSB ORF ID: 70282"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:A0AV96 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 54409"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86478 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86479 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86480 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86481 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:P86496 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q05519 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 11317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WX54 uniprotkb:Q9NVV9 - - intact:"CCSB ORF ID: 15010"(author assigned name) intact:"CCSB ORF ID: 1668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:P14373 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXE3 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 3866"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL1 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 100014747"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:P60410 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXL6 uniprotkb:Q96JC1 - - intact:"CCSB ORF ID: 9126"(author assigned name) intact:"CCSB ORF ID: 14492"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WXN0 uniprotkb:H0Y7A7 - - intact:"CCSB ORF ID: 56859"(author assigned name) intact:"CCSB ORF ID: 1"(author assigned name)|intact:"CCSB ORF ID: 395"(author assigned name)|intact:"CCSB ORF ID: 3484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY24 uniprotkb:O60341 - - intact:"CCSB ORF ID: 100062373"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P22301 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 53065"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P25786 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P32242 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49639 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:P49901 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1446"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5A8 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T5B0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56828"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T752 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100064144"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5T7P3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56129"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA76 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100016209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TA82 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q5TCM9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 100014491"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q6L8G9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 54665"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q7Z417 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q8NEC5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 1769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q969U6 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 6616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q96LJ7 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 313"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYE3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 70166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQS3 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 14567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9NQX5 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 3926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9UGL9 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56614"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WY89 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 52720"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYA8 uniprotkb:Q8WTU0 - - intact:"CCSB ORF ID: 2664"(author assigned name) intact:"CCSB ORF ID: 1386"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P49638 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P53365 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P57075 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 13969"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60409 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:P60410 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q05329 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 53270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13049 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3878"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q5JS98 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 1078"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96E29 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 6050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BT40 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 3334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYB9 uniprotkb:Q9NR28 - - intact:"CCSB ORF ID: 54043"(author assigned name) intact:"CCSB ORF ID: 7038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WYG4 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 100069039"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZ43 uniprotkb:Q9H3R5 - - intact:"CCSB ORF ID: 13463"(author assigned name) intact:"CCSB ORF ID: 443"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZB2 uniprotkb:P59542 - - intact:"CCSB ORF ID: 14406"(author assigned name) intact:"CCSB ORF ID: 71970"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZD8 uniprotkb:Q08AM6 - - intact:"CCSB ORF ID: 3592"(author assigned name) intact:"CCSB ORF ID: 56684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P10745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11294"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P31273 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P48745 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:P78337 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q5T7P2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 100015072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q6ZTN6 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 55469"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q92734 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 5933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q96JK9 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 70278"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9H9P5 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 9117"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZP6 uniprotkb:Q9Y223 - - intact:"CCSB ORF ID: 9924"(author assigned name) intact:"CCSB ORF ID: 56822"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087WZY1 uniprotkb:Q8N6Q1 - - intact:"CCSB ORF ID: 12243"(author assigned name) intact:"CCSB ORF ID: 9237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q13422 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 2940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96CN4 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 7367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X037 uniprotkb:Q96MF2 - - intact:"CCSB ORF ID: 56675"(author assigned name) intact:"CCSB ORF ID: 4447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:O75031 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:P43365 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 940"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X094 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 5718"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:P78424 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q8N9N5 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 6534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0I0 uniprotkb:Q96PF1 - - intact:"CCSB ORF ID: 9824"(author assigned name) intact:"CCSB ORF ID: 100015481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q15041 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 2374"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X0R6 uniprotkb:Q9NS64 - - intact:"CCSB ORF ID: 435"(author assigned name) intact:"CCSB ORF ID: 4418"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X111 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 2603"(author assigned name)|intact:"CCSB ORF ID: 100015388"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X188 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 11551"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O00308 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O14879 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 6763"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:O75360 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:P50222 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X279 uniprotkb:Q86Y26 - - intact:"CCSB ORF ID: 1618"(author assigned name) intact:"CCSB ORF ID: 55406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:P26045 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X295 uniprotkb:Q9Y3R0 - - intact:"CCSB ORF ID: 53605"(author assigned name) intact:"CCSB ORF ID: 56249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q6NZI2 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 10955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A087X2D5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 54682"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:P61978 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 4706"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNI4 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 71004"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q15691 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 56115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9BYP8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 100015204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LNU6 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 52788"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O00560 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75031 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:O75506 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P06753 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P09493 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P25791 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 1136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:P54646 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q01449 - - intact:"CCSB ORF ID: 12052"(author assigned name) intact:"CCSB ORF ID: 8306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q6DKK2 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q86WT6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 9383"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q99816 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 3267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A096LP75 uniprotkb:Q9Y605 - - intact:"CCSB ORF ID: 11452"(author assigned name) intact:"CCSB ORF ID: 12736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQQ9 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 56927"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49759 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 2541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49760 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 11851"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:P49761 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 7447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS2 uniprotkb:Q9Y6A4 - - intact:"CCSB ORF ID: 15005"(author assigned name) intact:"CCSB ORF ID: 3936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQS8 uniprotkb:Q68CJ9 - - intact:"CCSB ORF ID: 6296"(author assigned name) intact:"CCSB ORF ID: 100070235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:P49366 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 14671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT0 uniprotkb:Q8N2K1 - - intact:"CCSB ORF ID: 56655"(author assigned name) intact:"CCSB ORF ID: 71927"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQT4 uniprotkb:Q969G2 - - intact:"CCSB ORF ID: 594"(author assigned name) intact:"CCSB ORF ID: 6869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:O43482 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:P36406 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 1227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQW0 uniprotkb:Q9UGI0 - - intact:"CCSB ORF ID: 9061"(author assigned name) intact:"CCSB ORF ID: 100016009"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ3 uniprotkb:O95817 - - intact:"CCSB ORF ID: 13159"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:O14964 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86478 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86479 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86480 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86481 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:P86496 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q8IZ26 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9453"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MQZ8 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 9442"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:G5E962 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 4361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O15481 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 1981"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:O60341 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P26196 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:P48730 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 3787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96MT8 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 7011"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR27 uniprotkb:Q96T60 - - intact:"CCSB ORF ID: 2304"(author assigned name) intact:"CCSB ORF ID: 9905"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O43257 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 12557"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75360 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:O75382 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 70353"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q12982 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 7992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q5JST6 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2098"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR36 uniprotkb:Q9Y2J4 - - intact:"CCSB ORF ID: 55423"(author assigned name) intact:"CCSB ORF ID: 2910"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR49 uniprotkb:P50222 - - intact:"CCSB ORF ID: 8514"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR58 uniprotkb:O75360 - - intact:"CCSB ORF ID: 53708"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR69 uniprotkb:P08754 - - intact:"CCSB ORF ID: 11192"(author assigned name) intact:"CCSB ORF ID: 12739"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:O15160 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:P13196 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 6907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q8NEH6 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 1768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR80 uniprotkb:Q9H0E9 - - intact:"CCSB ORF ID: 8717"(author assigned name) intact:"CCSB ORF ID: 4485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:O75031 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:P51116 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 989"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q0VAM2 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 56599"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q5SQP8 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 10493"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q6NT76 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 14887"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q96GX9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 3056"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MR97 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 9069"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:K7EN13 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 71396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:P14859 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 3767"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRH1 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 9163"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:O60749 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 100008556"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q13596 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 4709"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRI2 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 3337"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8N6L0 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 9267"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRK1 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 11962"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW19 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRW1 uniprotkb:P0CW20 - - intact:"CCSB ORF ID: 10506"(author assigned name) intact:"CCSB ORF ID: 53462"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRX4 uniprotkb:Q8TCP9 - - intact:"CCSB ORF ID: 70470"(author assigned name) intact:"CCSB ORF ID: 9435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:A6NJ78 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 13215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q6NVU6 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q7Z6I5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 54438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q8NHP1 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 71553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MRY9 uniprotkb:Q9Y2M5 - - intact:"CCSB ORF ID: 528"(author assigned name) intact:"CCSB ORF ID: 9012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:O95696 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 100000034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q96C28 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS31 uniprotkb:Q9UK58 - - intact:"CCSB ORF ID: 71021"(author assigned name) intact:"CCSB ORF ID: 5716"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:A0A0A0MS70 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 138"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:P13682 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q6IQ16 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 14447"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q8NFW5 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 100062355"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS70 uniprotkb:Q9NWZ3 - - intact:"CCSB ORF ID: 138"(author assigned name) intact:"CCSB ORF ID: 6395"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MS80 uniprotkb:Q8IXB3 - - intact:"CCSB ORF ID: 2831"(author assigned name) intact:"CCSB ORF ID: 72045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:P53539 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100067219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q96G42 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 6724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSI2 uniprotkb:Q9UPG8 - - intact:"CCSB ORF ID: 54840"(author assigned name) intact:"CCSB ORF ID: 100011481"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSR2 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 6054"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MSW5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 56817"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:A0A0A0MT20 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 8967"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:E9PFK9 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1047"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:O75971 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 7428"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:P54646 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q00994 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 3400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q12934 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11328"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q5JTB6 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 54136"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q6ISS4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 13805"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q86VP1 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 11567"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8IY31 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4088"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q8N443 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 10169"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q96QG7 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 1883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9NYJ8 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 71131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT20 uniprotkb:Q9P2W3 - - intact:"CCSB ORF ID: 8967"(author assigned name) intact:"CCSB ORF ID: 72084"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT77 uniprotkb:O75360 - - intact:"CCSB ORF ID: 12399"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q3V5L5 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 14249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MT83 uniprotkb:Q9Y4H4 - - intact:"CCSB ORF ID: 6146"(author assigned name) intact:"CCSB ORF ID: 7877"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A0MTT2 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 5091"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF3 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 4592"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYF7 uniprotkb:Q9NSC5 - - intact:"CCSB ORF ID: 56080"(author assigned name) intact:"CCSB ORF ID: 7127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:P61457 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 4960"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0A6YYJ4 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 12996"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1S3 uniprotkb:Q15834 - - intact:"CCSB ORF ID: 4441"(author assigned name) intact:"CCSB ORF ID: 4790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1T3 uniprotkb:O15315 - - intact:"CCSB ORF ID: 11741"(author assigned name) intact:"CCSB ORF ID: 8346"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J1Y2 uniprotkb:Q8TAP6 - - intact:"CCSB ORF ID: 56891"(author assigned name) intact:"CCSB ORF ID: 1190"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 4994"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J231 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4994"(author assigned name)|intact:"CCSB ORF ID: 70960"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J295 uniprotkb:Q86UW9 - - intact:"CCSB ORF ID: 54661"(author assigned name) intact:"CCSB ORF ID: 2587"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J299 uniprotkb:Q13643 - - intact:"CCSB ORF ID: 54828"(author assigned name) intact:"CCSB ORF ID: 5359"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F2 uniprotkb:Q9NRG1 - - intact:"CCSB ORF ID: 1900"(author assigned name) intact:"CCSB ORF ID: 2860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:O15160 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 5431"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q8N5M1 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 13434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2F8 uniprotkb:Q9UPW6 - - intact:"CCSB ORF ID: 100062567"(author assigned name) intact:"CCSB ORF ID: 52671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60369 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:P60410 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G0 uniprotkb:Q96ED9 - - intact:"CCSB ORF ID: 11232"(author assigned name) intact:"CCSB ORF ID: 573"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:O76011 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q15323 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q49A26 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 12315"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2G4 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 4268"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 55742"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0B4J2H2 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 100064189"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:J3KQ42 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43167 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:O43395 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P01137 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P26196 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P41219 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9926"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60331 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56524"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P60370 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:P68400 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14241 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q14451 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5823"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q3LI77 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56731"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q52LG2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q53GA4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 5096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q5T749 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 100016119"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IWZ5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N4B1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 9411"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8N8X9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 56468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q8TCE9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 13142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q92993 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 53941"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96C24 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q96NT3 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 14410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BQ66 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4727"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9BSM1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NQT4 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 4997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NRQ2 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 1578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9NZF1 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 574"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C3SFZ9 uniprotkb:Q9UJT9 - - intact:"CCSB ORF ID: 55475"(author assigned name) intact:"CCSB ORF ID: 71640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:A0A0C4DFM0 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 7473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:P47897 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 2421"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q58EX7 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 71027"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM0 uniprotkb:Q9H0C1 - - intact:"CCSB ORF ID: 7473"(author assigned name) intact:"CCSB ORF ID: 100009273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:A6NEM1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 10460"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P50222 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:P78424 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q5JTD7 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 71534"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM2 uniprotkb:Q9UBR4 - - intact:"CCSB ORF ID: 3421"(author assigned name) intact:"CCSB ORF ID: 100016058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:P35609 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 11563"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q08043 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 55882"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFM5 uniprotkb:Q99471 - - intact:"CCSB ORF ID: 5556"(author assigned name) intact:"CCSB ORF ID: 14830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN0 uniprotkb:Q9BWT7 - - intact:"CCSB ORF ID: 70127"(author assigned name) intact:"CCSB ORF ID: 53833"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:O00560 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:P55040 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFN3 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 4824"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:E7ES08 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 70049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O00560 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:O43167 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54115"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P31273 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P41227 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3180"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:P52179 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 56296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q15973 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q86VK4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYE0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 13209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96GY3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 2864"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q96SQ5 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BRR0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 5034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9BWG6 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 3364"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9H7X3 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 54384"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P0T4 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 6880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9UPY8 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 7187"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ0 uniprotkb:Q9Y247 - - intact:"CCSB ORF ID: 14398"(author assigned name) intact:"CCSB ORF ID: 1846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:P63165 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 14806"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9BYV9 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 100066339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ2 uniprotkb:Q9HCK0 - - intact:"CCSB ORF ID: 100064209"(author assigned name) intact:"CCSB ORF ID: 7917"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P08294 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 7285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:P40189 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54250"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q01432 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q02577 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52659"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q12797 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 12718"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q3MII6 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 70154"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q86T65 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 56872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q99732 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 52920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9GZT8 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 4562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFQ7 uniprotkb:Q9H5X1 - - intact:"CCSB ORF ID: 71163"(author assigned name) intact:"CCSB ORF ID: 5432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:O95967 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 2906"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q6L8G4 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 100015451"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFS6 uniprotkb:Q8NBS9 - - intact:"CCSB ORF ID: 56664"(author assigned name) intact:"CCSB ORF ID: 13722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:O43765 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q5JXX7 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT7 uniprotkb:Q96Q45 - - intact:"CCSB ORF ID: 5645"(author assigned name) intact:"CCSB ORF ID: 2286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:P68400 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6699"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8TAU3 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 8400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q8WYH8 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 14979"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HAF1 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 7537"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT8 uniprotkb:Q9UNL4 - - intact:"CCSB ORF ID: 12437"(author assigned name) intact:"CCSB ORF ID: 4992"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:A0A0C4DGS5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 14862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:O60711 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 7357"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P49023 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 70539"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:P81274 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q14145 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 244"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q4KMQ1 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q8N7W2 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 9342"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9BXL5 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 71160"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFT9 uniprotkb:Q9UMD9 - - intact:"CCSB ORF ID: 72067"(author assigned name) intact:"CCSB ORF ID: 100068264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFU2 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 662"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P24863 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11984"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:P26045 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 54341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8N6Y0 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 8352"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q8TD10 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 11163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX4 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 72182"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:H0UI80 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 7607"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:O75360 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFX9 uniprotkb:Q8IZ63 - - intact:"CCSB ORF ID: 4146"(author assigned name) intact:"CCSB ORF ID: 8103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFY5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 56641"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O60826 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 918"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O75360 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:O95231 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P28069 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 100016074"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:P50995 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 5229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q13554 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 7804"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q15645 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 4664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q96D98 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 71122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DFZ2 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 7320"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:O75360 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q5H9J7 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 56194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG38 uniprotkb:Q8IYF3 - - intact:"CCSB ORF ID: 14384"(author assigned name) intact:"CCSB ORF ID: 2104"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:P60410 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BRI3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 4862"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BSE2 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 5093"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYQ3 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 71609"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR6 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 14057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG49 uniprotkb:Q9BYR8 - - intact:"CCSB ORF ID: 147"(author assigned name) intact:"CCSB ORF ID: 56271"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A0A0C4DG62 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 3770"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:A7MD48 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 100068177"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BU76 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 4173"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9BXS5 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 206"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9H4P4 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 10017"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG62 uniprotkb:Q9NPI7 - - intact:"CCSB ORF ID: 3770"(author assigned name) intact:"CCSB ORF ID: 204"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:A6NI15 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 100068995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DG94 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 11179"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:A0A0C4DGF1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O14787 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 14642"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:O95231 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P20618 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P51451 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P52597 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P54253 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P55273 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3933"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P78337 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86478 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86479 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86480 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86481 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:P86496 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 56508"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q15038 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3598"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q16637 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100008555"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI64 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100015503"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI66 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100014733"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI72 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 55738"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q3LI76 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71924"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q68D86 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q6ZRY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100069067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q7Z6R9 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100066379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8IUC2 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 54667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8N9W6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 9846"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q8TDS5 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 70408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q93062 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9BRT3 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 5746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9H0F6 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9NZC7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 3672"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF1 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 1052"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:A0A0D2X7Z3 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 10480"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P07954 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 3408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:P42167 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11923"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGF2 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 9706"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGH3 uniprotkb:Q6PJ21 - - intact:"CCSB ORF ID: 3322"(author assigned name) intact:"CCSB ORF ID: 55230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGJ8 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 14916"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q14657 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 12549"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGM4 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54975"(author assigned name) intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:O60906 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3603"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q00765 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 12362"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6RW13 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 7845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q6ZPD8 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 100069030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q969L2 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 581"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q96DZ9 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP0 uniprotkb:Q9BW62 - - intact:"CCSB ORF ID: 5180"(author assigned name) intact:"CCSB ORF ID: 3219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:P62166 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 4378"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGP8 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 9655"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ3 uniprotkb:P50222 - - intact:"CCSB ORF ID: 6700"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:O00303 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P40937 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 3772"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:P80217 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100010286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q13099 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 100011347"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q8NHP7 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 1852"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGQ7 uniprotkb:Q9NP55 - - intact:"CCSB ORF ID: 9964"(author assigned name) intact:"CCSB ORF ID: 6320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGR0 uniprotkb:O60437 - - intact:"CCSB ORF ID: 14172"(author assigned name) intact:"CCSB ORF ID: 56285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A6QL64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5667"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:A8K727 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:D2CFI5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71052"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:E9PSE9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54249"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:H0YKB7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3KMY6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4218"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00311 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O00506 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O14777 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9868"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O15145 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14505"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43395 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3292"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43602 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43741 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O43809 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7485"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60341 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10726"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O60763 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9988"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75604 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3754"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75608 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2843"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O75934 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5562"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O94875 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95391 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95678 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95983 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11422"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:O95995 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00540 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P00973 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55247"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P04264 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P09067 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P10606 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P13682 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P14136 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2920"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P15622 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 525"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P17036 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7019"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P18084 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5834"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25786 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P25800 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14023"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P26196 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29474 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13962"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P29972 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P38936 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3192"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P40617 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3861"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P41182 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53151"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P48047 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6684"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49638 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13295"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P49756 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70593"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P53365 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P54646 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55040 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P55081 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11817"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56279 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3768"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P56524 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P57771 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61019 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4478"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61326 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:P61968 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q01664 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2909"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q03252 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100067760"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q07002 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2966"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q0P5N6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53432"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q12774 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6559"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13094 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1108"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13573 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13671 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7142"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13835 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q13895 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11723"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14449 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11912"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14687 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q14964 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9502"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15052 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11410"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15319 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53479"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15735 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q15911 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16543 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100009829"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q16825 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100068246"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q2TBE0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55730"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q32MN6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3B820 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53030"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q3SY00 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70040"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53GI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 779"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q53TS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1879"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q56NI9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014712"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 56739"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T5P2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7880"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5T7P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5TAP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56199"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5THR3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71382"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q5W5X9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7605"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63HK5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q63ZY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14983"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6BCY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NS38 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14660"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NX45 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14269"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6NYC8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P1J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12343"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6P5Z2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100066538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6UWV6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6X4W1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71415"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q6ZSJ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7L5A3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z4V0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q7Z6J9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11626"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86TB9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86UU5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2038"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VF2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86VV4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71095"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86Y33 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YD7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11110"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q86YV0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9456"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IUD6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54459"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVS8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13554"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IVT2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11067"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX01 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1035"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IX12 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53185"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYE1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2077"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYH5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10126"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYI6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10122"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N3L3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56234"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N5A5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10101"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N715 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1724"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N7B6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8148"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8N8B7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 856"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA54 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56482"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NA57 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NCX0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13371"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8ND82 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10595"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NEY4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7256"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8NHY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100015630"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAE8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 14860"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TAP4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1184"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC05 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TC71 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1340"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TCX5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8341"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TD31 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8TEC5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56671"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WUD1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q8WWY3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54082"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92619 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12188"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92624 - - intact:"CCSB ORF ID: 5182"(author assigned name) intact:"CCSB ORF ID: 820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q92917 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969G3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12062"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q969R5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5892"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96A72 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6436"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96BZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7646"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96C55 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7694"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96CN9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7306"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96DZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 871"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96EZ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6901"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96GN5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4787"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96I25 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5200"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IQ9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5286"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96IZ5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5489"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KM6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56696"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96KN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2283"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MX3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100069883"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96MY7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71174"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96N21 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 70997"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96NC0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 13326"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96PN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9272"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96QH2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9458"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RF0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54053"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q96RK0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100014433"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99459 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2424"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99469 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7857"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99569 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10616"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99728 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54455"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99958 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q99959 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 54308"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BQ89 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2504"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BRU9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3956"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BSW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4387"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUI4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7936"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BUZ4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3339"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BW85 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7803"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9BZW7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1602"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0I2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4798"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H0W8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5434"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H4E5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 12100"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H5Z6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8273"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6X5 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8361"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H6Z4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3270"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H788 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 55307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H7L9 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 71749"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9H987 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 72050"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9HC52 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NPJ8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 53158"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NRE2 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 100063987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NS91 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1782"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NU19 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52971"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVE4 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1302"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVF7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 8468"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NVN8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6921"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NW64 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 928"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P1Z0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 11440"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P289 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56049"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9P2K3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 9304"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UBU8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 4430"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UER7 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 52987"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9UHP6 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 2827"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y242 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6776"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y2P8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 7995"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y376 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 1012"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y3C0 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6319"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y4E8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 56692"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6H1 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 6103"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGS5 uniprotkb:Q9Y6W3 - - intact:"CCSB ORF ID: 14862"(author assigned name) intact:"CCSB ORF ID: 10664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGT3 uniprotkb:P43357 - - intact:"CCSB ORF ID: 2378"(author assigned name) intact:"CCSB ORF ID: 100009500"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q05516 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 8127"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q0VGL1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 54866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGV4 uniprotkb:Q8NHQ1 - - intact:"CCSB ORF ID: 12089"(author assigned name) intact:"CCSB ORF ID: 1596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW6 uniprotkb:P51687 - - intact:"CCSB ORF ID: 56847"(author assigned name) intact:"CCSB ORF ID: 71191"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW7 uniprotkb:O43639 - - intact:"CCSB ORF ID: 1523"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:O43765 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 3952"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q96EQ0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 6139"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DGW9 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 8402"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q59EK9 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 4465"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH12 uniprotkb:Q92997 - - intact:"CCSB ORF ID: 7117"(author assigned name) intact:"CCSB ORF ID: 9635"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:P49247 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 747"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH38 uniprotkb:Q9UMX0 - - intact:"CCSB ORF ID: 4116"(author assigned name) intact:"CCSB ORF ID: 2261"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0C4DH65 uniprotkb:P49356 - - intact:"CCSB ORF ID: 72022"(author assigned name) intact:"CCSB ORF ID: 7869"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B2RXF5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70870"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:H3BMC3 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O15344 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 11907"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O75360 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 72096"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O76083 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3048"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:O95544 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 3736"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P26371 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 13791"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60369 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60409 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:P60410 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q13077 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 12438"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q2TAL6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71514"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI67 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100064146"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q3LI70 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100062578"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8G8 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015815"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q6L8H4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015911"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q701N4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100014855"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYQ0 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 71628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR4 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100015265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9BYR5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 56106"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H0D6 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 53263"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9H190 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 4161"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D2X7Z3 uniprotkb:Q9NRD5 - - intact:"CCSB ORF ID: 10480"(author assigned name) intact:"CCSB ORF ID: 100000407"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SEJ5 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 7282"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:O95231 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:P52597 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7437"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q96CS7 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 7021"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SF05 uniprotkb:Q9BYJ9 - - intact:"CCSB ORF ID: 100000220"(author assigned name) intact:"CCSB ORF ID: 10561"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q8WWN9 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 71930"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q969H4 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 5889"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0D9SFG6 uniprotkb:Q96HB5 - - intact:"CCSB ORF ID: 3723"(author assigned name) intact:"CCSB ORF ID: 4535"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:P60409 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 56541"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q8NCK3 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 7363"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0G2JH32 uniprotkb:Q96JP5 - - intact:"CCSB ORF ID: 71390"(author assigned name) intact:"CCSB ORF ID: 10608"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A0A0J9YY34 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 70538"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:E9PH57 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56644"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:F5H3M2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11229"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:J3KNW4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5965"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O43186 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3015"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O60504 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O76011 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13600"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O95678 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100064207"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:O96006 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 201"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P07196 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13227"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P13646 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54296"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P14373 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 152"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P31321 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100067220"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P37198 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P38432 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6448"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P46934 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100068511"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P48051 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:P78424 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100016215"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q04864 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 53942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q14142 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4976"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q53G59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4623"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q5T7B8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 52949"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6IA69 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 4650"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6PI77 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q6UY14 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 9414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z3S9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55237"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q7Z698 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 54640"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8IYA8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 2265"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8NC26 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8ND90 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10320"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q8WYQ9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71765"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q92764 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100014396"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96BR9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 784"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96DT7 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 56858"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96EG3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55254"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q96KN3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100066872"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q99081 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11648"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BWG4 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 3365"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BXU3 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 11118"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9BYV2 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 55664"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H079 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 13000"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H257 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9H5J0 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 100011516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9P286 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 1317"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UBB9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 5894"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UHD9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 71001"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9UKT9 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 10016"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY01 uniprotkb:Q9Y3Q8 - - intact:"CCSB ORF ID: 8365"(author assigned name) intact:"CCSB ORF ID: 6551"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O43639 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O60504 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55625"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:O75031 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100070143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P45984 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 10051"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P54253 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 53934"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P61981 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 801"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:P63172 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 100010307"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q0VD86 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 56442"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q12933 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9637"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q14247 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 4780"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q4LE39 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 70202"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q5JR59 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q8IZP0 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 12435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q8WWB5 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 7404"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q96KQ4 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 70264"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9NYB9 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 7439"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9P2A4 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 4982"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0J9YY34 uniprotkb:Q9Y297 - - intact:"CCSB ORF ID: 70538"(author assigned name) intact:"CCSB ORF ID: 9477"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F2 uniprotkb:P25024 - - intact:"CCSB ORF ID: 646"(author assigned name) intact:"CCSB ORF ID: 9591"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F2 uniprotkb:Q9BZJ8 - - intact:"CCSB ORF ID: 646"(author assigned name) intact:"CCSB ORF ID: 14596"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0R4J2F6 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 5250"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RQE4 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 52832"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RQE4 uniprotkb:Q96HL8 - - intact:"CCSB ORF ID: 52832"(author assigned name) intact:"CCSB ORF ID: 5457"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RR07 uniprotkb:O95070 - - intact:"CCSB ORF ID: 8617"(author assigned name) intact:"CCSB ORF ID: 954"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0U1RR07 uniprotkb:Q8TBB1 - - intact:"CCSB ORF ID: 8617"(author assigned name) intact:"CCSB ORF ID: 8141"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:O14832 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2156"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q86YM7 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 742"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8IYX8 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2621"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8TF65 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 2166"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q8WUI4 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 8955"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG69 uniprotkb:Q9BW66 - - intact:"CCSB ORF ID: 72048"(author assigned name) intact:"CCSB ORF ID: 3198"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A0X1KG71 uniprotkb:P18615 - - intact:"CCSB ORF ID: 100002417"(author assigned name) intact:"CCSB ORF ID: 11790"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:A0A140G945 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 13813"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:O00560 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:O14558 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 71013"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:P02511 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 5585"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q96HA8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 4786"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q9H8Y8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 4973"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1,2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A140G945 uniprotkb:Q9NZD8 - - intact:"CCSB ORF ID: 13813"(author assigned name) intact:"CCSB ORF ID: 3392"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0A5E8 uniprotkb:P81274 - - intact:"CCSB ORF ID: 2892"(author assigned name) intact:"CCSB ORF ID: 100009390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV02 uniprotkb:P26367 - - intact:"CCSB ORF ID: 54317"(author assigned name) intact:"CCSB ORF ID: 100009072"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:A1L443 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 54690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:F8VZP4 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 7334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:P32243 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 9958"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:P57721 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 7219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q5SWW7 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 71280"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q6P1W5 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 14312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q8N6W0 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 9550"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q9NWB1 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 53797"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AV96 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 54409"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:O95721 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:P63167 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 56155"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:Q16623 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 12260"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVG3 uniprotkb:Q9BSR8 - - intact:"CCSB ORF ID: 54550"(author assigned name) intact:"CCSB ORF ID: 4338"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVK6 uniprotkb:P50222 - - intact:"CCSB ORF ID: 54475"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0AVK6 uniprotkb:Q9UNE7 - - intact:"CCSB ORF ID: 54475"(author assigned name) intact:"CCSB ORF ID: 5219"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:A0MZ66 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 15060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:P05413 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 5483"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:P62508 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 10820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q13625 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 55351"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q15025 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 7045"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9NP64 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 4639"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9Y2D4 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 100063937"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0MZ66 uniprotkb:Q9Y5B8 - - intact:"CCSB ORF ID: 15060"(author assigned name) intact:"CCSB ORF ID: 5633"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJW8 uniprotkb:Q15915 - - intact:"CCSB ORF ID: 56904"(author assigned name) intact:"CCSB ORF ID: 70473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJW8 uniprotkb:Q53EP0 - - intact:"CCSB ORF ID: 56904"(author assigned name) intact:"CCSB ORF ID: 676"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q02930 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 10842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q6EMK4 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 14498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q7Z3C6 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 12318"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q86VE0 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 72064"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q96C00 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 7677"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q99757 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 2398"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX0 uniprotkb:Q9BSH4 - - intact:"CCSB ORF ID: 70183"(author assigned name) intact:"CCSB ORF ID: 4898"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJX4 uniprotkb:P50222 - - intact:"CCSB ORF ID: 56909"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:B8A4K4 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 13662"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:P60369 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 56711"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:P60410 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 56717"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q07627 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 71959"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q5TD97 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 1853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q6A162 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 54668"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PJY2 uniprotkb:Q99750 - - intact:"CCSB ORF ID: 70184"(author assigned name) intact:"CCSB ORF ID: 5143"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:O15393 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 11816"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:O60238 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 2427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:P04233 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 12638"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:P32856 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 10658"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q96BA8 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 7617"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q99942 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 5370"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK00 uniprotkb:Q9HDC5 - - intact:"CCSB ORF ID: 56911"(author assigned name) intact:"CCSB ORF ID: 70808"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK05 uniprotkb:Q9BXK5 - - intact:"CCSB ORF ID: 56941"(author assigned name) intact:"CCSB ORF ID: 4576"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK05 uniprotkb:Q9Y5L5 - - intact:"CCSB ORF ID: 56941"(author assigned name) intact:"CCSB ORF ID: 55757"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:E9PEI6 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 13893"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:P26715 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 13628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:P27105 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 3031"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q68D78 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 14034"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q8N6S5 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 2022"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A0PK11 uniprotkb:Q9UHP7 - - intact:"CCSB ORF ID: 56940"(author assigned name) intact:"CCSB ORF ID: 8186"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A4F0 uniprotkb:P50222 - - intact:"CCSB ORF ID: 54269"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A4G5 uniprotkb:O60269 - - intact:"CCSB ORF ID: 54500"(author assigned name) intact:"CCSB ORF ID: 6830"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:P49639 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 10057"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:P61236 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q5BKX5 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 71426"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q96LM6 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 2194"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A580 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 56722"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5C7 uniprotkb:P50222 - - intact:"CCSB ORF ID: 53347"(author assigned name) intact:"CCSB ORF ID: 824"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5C7 uniprotkb:Q8IUG1 - - intact:"CCSB ORF ID: 53347"(author assigned name) intact:"CCSB ORF ID: 70025"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:P32969 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 4725"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:Q6P597 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 54463"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1A5D9 uniprotkb:Q9BZZ5 - - intact:"CCSB ORF ID: 56938"(author assigned name) intact:"CCSB ORF ID: 100008312"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O00560 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O14964 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:O95231 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:P09234 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 53235"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:P61236 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q13444 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 5820"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q71SY5 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 100067615"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1E959 uniprotkb:Q8IWB4 - - intact:"CCSB ORF ID: 12976"(author assigned name) intact:"CCSB ORF ID: 10400"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:A8MV65 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71310"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O43251 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 12686"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O43711 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 7807"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O75593 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 40080553"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O75909 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 172"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O95231 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 52853"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:O95817 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5066"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P14678 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14994"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P17482 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6243"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P21549 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 70497"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P32242 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5285"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P61236 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11745"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:P78337 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6137"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q01085 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71334"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q01974 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 54746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q03989 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14251"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q08117 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 53886"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q12951 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71075"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q13227 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 8584"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14119 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100015985"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14511 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 14735"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q14847 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 5231"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q15915 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 70473"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q64LD2 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 3942"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q6PEX3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 10781"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q71SY5 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100067615"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z3H4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 54131"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z3K3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 10876"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q7Z5V6 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 71408"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q8IXL7 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11435"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q8WU58 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6466"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q92567 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 11367"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q96A09 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 6636"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q96K80 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 7896"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q99932 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 1414"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BQY4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 2032"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BTL3 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 2575"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9BZE0 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100014501"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9H0L4 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 9560"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9H6Z9 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 52628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9HBE1 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 12624"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9NQB0 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 9999"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9ULV5 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100015118"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1KXE4 uniprotkb:Q9UQM7 - - intact:"CCSB ORF ID: 14523"(author assigned name) intact:"CCSB ORF ID: 100067228"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L162 uniprotkb:O75367 - - intact:"CCSB ORF ID: 56901"(author assigned name) intact:"CCSB ORF ID: 6390"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L162 uniprotkb:Q9UIG4 - - intact:"CCSB ORF ID: 56901"(author assigned name) intact:"CCSB ORF ID: 100069008"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q16512 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 10163"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q5XKE5 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 14366"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L190 uniprotkb:Q96ES7 - - intact:"CCSB ORF ID: 56944"(author assigned name) intact:"CCSB ORF ID: 612"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L429 uniprotkb:Q96IK5 - - intact:"CCSB ORF ID: 54674"(author assigned name) intact:"CCSB ORF ID: 2029"(author assigned name)|intact:"CCSB ORF ID: 4516"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:A5D8V6 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 55690"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:G5E9X2 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 14722"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O14964 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O43639 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3522"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:O75800 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 9866"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:P54725 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 7058"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:P62993 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 8010"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q13158 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 4004"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q13952 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 3427"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q7Z6J0 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 71178"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q8NDC4 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 11060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q92625 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 71379"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q92882 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 5498"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q96PV6 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 9518"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q99633 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 961"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q99961 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 1845"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L443 uniprotkb:Q9NX04 - - intact:"CCSB ORF ID: 54690"(author assigned name) intact:"CCSB ORF ID: 14291"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:H3BTW2 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 467"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:O00560 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 53842"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:P37198 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 11746"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q13503 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 5677"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q13526 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 4406"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q15560 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 6195"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q5SW79 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 1496"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q7Z3Y8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 100066360"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q96BD8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 230"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q96CS2 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 7083"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=2" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q9UPT5 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 2931"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4H1 uniprotkb:Q9Y6Y8 - - intact:"CCSB ORF ID: 54931"(author assigned name) intact:"CCSB ORF ID: 14293"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:J3QL05 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 11028"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O14964 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3769"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O43482 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 209"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O43602 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 8416"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O60645 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12212"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O60941 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 2991"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O76064 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4755"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O95295 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 4350"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:O95363 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 12653"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P10768 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 3628"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P13682 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 71060"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P31146 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 54484"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo Sapiens) psi-mi:"MI:0407"(direct interaction) - - - - psi-mi:"MI:0499"(unspecified role) psi-mi:"MI:0499"(unspecified role) - - psi-mi:"MI:0326"(protein) psi-mi:"MI:0326"(protein) - - - - - comment:"assay version=1" taxid:4932(Saccharomyces cerevisiae) - - - - - - - - - - - psi-mi:"MI1180"(partial DNA sequence identification) psi-mi:"MI1180"(partial DNA sequence identification)
+uniprotkb:A1L4K1 uniprotkb:P36508 - - intact:"CCSB ORF ID: 54901"(author assigned name) intact:"CCSB ORF ID: 9"(author assigned name) psi-mi:"MI:0018"(two hybrid) - validated taxid:9606(Homo Sapiens) taxid:9606(Homo